-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Ingest Manager] Fix condition for filtering to installed packages #79205
[Ingest Manager] Fix condition for filtering to installed packages #79205
Conversation
Pinging @elastic/ingest-management (Team:Ingest Management) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice find! Thanks for the fix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm;
💚 Build SucceededMetrics [docs]
To update your PR or re-run it, just comment with: |
# Conflicts: # x-pack/plugins/ingest_manager/server/services/epm/packages/get.ts
@jen-huang When I was working on a demo, I perceived a slowness in the "search box" in the add integration would that fix that? cc @mostlyjason |
@ph Yes this fix should speed that up. |
Hi @jen-huang We have validated this defect on latest 7.9.3 BC1 Kibana Cloud environment with commit 289d920 Observed that:
Screenshot: Please let us know if anything is missing from our end. |
Summary
Resolves #71289. Fixes a silly typo in the condition where we check for installed packages, before checking if the package is limited. The typo caused us to fetch all packages rather than just installed packages 🤦🏻♀️
I happened to run into this due to getting an error about a missing package after I switched between remote and local registries. Fortunately, this didn't have any consequences on our releases apart from slowing the loading of
Add integration
selection step.