Skip to content

Commit

Permalink
[index management] unskip api integration test (#209034)
Browse files Browse the repository at this point in the history
## Summary

This change follows from
elastic/elasticsearch#120539

'frozen' attribute will no longer be returned in 9.0 and greater since
there are no longer frozen indices

Closes: #208873
  • Loading branch information
mattkime authored Jan 31, 2025
1 parent 2fe3976 commit ab9492c
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ export default function ({ getService }: FtrProviderContext) {
const { createIndex, deleteAllIndices } = indicesHelpers(getService);
const { getIndexSettings, updateIndexSettings } = settingsApi(getService);

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/208873
describe.skip('settings', () => {
describe('settings', () => {
after(async () => await deleteAllIndices());

it('should fetch an index settings', async () => {
Expand Down Expand Up @@ -48,7 +47,6 @@ export default function ({ getService }: FtrProviderContext) {
'max_script_fields',
'query',
'format',
'frozen',
'sort',
'priority',
'codec',
Expand Down

0 comments on commit ab9492c

Please sign in to comment.