-
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
Fix import_saved_objects_between_versions.ts
FTR test
#122243
Conversation
Pinging @elastic/kibana-core (Team:Core) |
const count = Number.parseInt(parts[1], 10); | ||
if (count === 0) { | ||
throw new Error('text not loaded yet'); | ||
} |
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.
The new failure occurs because before the ajax calls are performed, the label displays exports 0 objects
. We're now waiting until the end of the call by checking that the numeric value is not zero (there will always be at least one object in the table, as the config object is present)
@elasticmachine merge upstream |
💚 Build Succeeded
Metrics [docs]
History
To update your PR or re-run it, just comment with: |
Co-authored-by: Kibana Machine <[email protected]> (cherry picked from commit 389a87d)
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
…22553) Co-authored-by: Kibana Machine <[email protected]> (cherry picked from commit 389a87d) Co-authored-by: Pierre Gayvallet <[email protected]>
Summary
Fix #121968