Skip to content
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

Remove indices.unfreeze API #3552

Merged
merged 2 commits into from
Jan 20, 2025
Merged

Remove indices.unfreeze API #3552

merged 2 commits into from
Jan 20, 2025

Conversation

pquentin
Copy link
Member

This was removed in elastic/elasticsearch#119227, but our sync does not handle removals as it runs make generate, and this was breaking generation.

@pquentin pquentin requested a review from a team as a code owner January 20, 2025 07:33
@pquentin pquentin added the skip-backport This pull request should not be backported label Jan 20, 2025
@@ -53,7 +53,7 @@ async function run () {
per_page: 100
})
if (data.length > 0) {
files.push(...data.map(entry => entry.filename))
files.push(...data.filter(entry => entry.status !== 'deleted').map(entry => entry.filename))
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Validation fails because it tries to validate indices.unfreeze. This change should fix it, but it needs to be merged before it has any effect.

Copy link
Member

@PeteGillinElastic PeteGillinElastic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@pquentin pquentin merged commit 58f9e67 into main Jan 20, 2025
7 of 8 checks passed
@pquentin pquentin deleted the remove-indices-unfreeze branch January 20, 2025 09:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip-backport This pull request should not be backported specification
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants