-
Notifications
You must be signed in to change notification settings - Fork 25.3k
Fix SearchableSnapshotActionIT #66698
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 SearchableSnapshotActionIT #66698
Conversation
This attempts to fix the flakiness seen in some of the tests that mount an index as searchable snapshot. The flakiness was caused when attempting to wipe the cluster after the test executed due to an exception caused by ``` cannot delete snapshot during a restore in progress ``` This adds a wait step after the tests that polls the repository status until there are no snapshots.
Pinging @elastic/es-core-features (Team:Core/Features) |
I believe a similar discrepancy between the |
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
This attempts to fix the flakiness seen in some of the tests that mount an index as searchable snapshot. The flakiness was caused when attempting to wipe the cluster after the test executed due to an exception caused by ``` cannot delete snapshot during a restore in progress ``` This adds a wait step after the tests that polls the repository status until there are no snapshots. (cherry picked from commit 86cc49e) Signed-off-by: Andrei Dan <andrei.dan@elastic.co>
This attempts to fix the flakiness seen in some of the tests that mount an index as searchable snapshot. The flakiness was caused when attempting to wipe the cluster after the test executed due to an exception caused by ``` cannot delete snapshot during a restore in progress ``` This adds a wait step after the tests that polls the repository status until there are no snapshots. (cherry picked from commit 86cc49e) Signed-off-by: Andrei Dan <andrei.dan@elastic.co>
This attempts to fix the flakiness seen in some of the tests that mount an index as searchable snapshot. The flakiness was caused when attempting to wipe the cluster after the test executed due to an exception caused by ``` cannot delete snapshot during a restore in progress ``` This adds a wait step after the tests that polls the repository status until there are no snapshots. (cherry picked from commit 86cc49e) Signed-off-by: Andrei Dan <andrei.dan@elastic.co>
This attempts to fix the flakiness seen in some of the tests that mount an index as searchable snapshot. The flakiness was caused when attempting to wipe the cluster after the test executed due to an exception caused by ``` cannot delete snapshot during a restore in progress ``` This adds a wait step after the tests that polls the repository status until there are no snapshots. (cherry picked from commit 86cc49e) Signed-off-by: Andrei Dan <andrei.dan@elastic.co>
This attempts to fix the flakiness seen in some of the tests
that mount an index as searchable snapshot.
The flakiness was caused when attempting to wipe the cluster after
the test executed due to an exception caused by
This adds a wait step after the tests that polls the repository status
until there are no snapshots.
Fixes #66497