You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
registerFeature() adds the file import panel on Kibana's home page.
In ml/plugin.ts this has always been called in the callback for the license subscription (an async callback).
With the changes in [ML] Limit exposing shared static code through ml/public/index.ts. #77745 we added remote data fetching to reduce the bundle size of the page load bundle. This increases the time it might take to get to the code that does the registers. This results in a race condition which triggers the failing test.
It is worth noting that the overall structure of the code (registering in an async function after the license check triggers). It seems to me until now we've just been lucky enough that this wasn't triggered.
This investigation is still work in progress, will further dig down.
Sometimes, the Kibana home page doesn't display the
Upload a file
button even though the user has the needed permissions.Can e.g. be seen a couple times in this flaky test runner job.
Might be related to the changes made in #77745
The text was updated successfully, but these errors were encountered: