-
Notifications
You must be signed in to change notification settings - Fork 25k
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 Search Applications bug where deleting an alias before deleting an application intermittently caused errors #106329
Fix Search Applications bug where deleting an alias before deleting an application intermittently caused errors #106329
Conversation
Hi @kderusso, I've created a changelog YAML for you. |
Pinging @elastic/search-relevance (Team:Search - Relevance) |
Pinging @elastic/ent-search-eng (Team:SearchOrg) |
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
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.
👍
💚 Backport successful
|
…n application intermittently caused errors (elastic#106329) * Update delete object to never fail if alias does not exist * Update docs/changelog/106329.yaml * Update changelog * Fix area in changelog
There is an intermittent error when deleting search applications, where if the alias has been removed the search application deletion call can fail with an alias not found error.
To reproduce:
It appears there is a race condition. Sometimes this returns an acknowledged response but other times it returns the following error:
This PR addresses this.