Skip to content

Commit

Permalink
Wait for a yellow source before starting reindex (elastic#113382)
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/core/server/saved_objects/migrationsv2/actions/integration_tests/actions.test.ts
  • Loading branch information
rudolf committed Oct 12, 2021
1 parent deb016e commit a972c50
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -803,8 +803,12 @@ describe('migration actions', () => {
`);
});

// FLAKY https://github.com/elastic/kibana/issues/113012
it.skip('resolves left wait_for_task_completion_timeout when the task does not finish within the timeout', async () => {
it('resolves left wait_for_task_completion_timeout when the task does not finish within the timeout', async () => {
await waitForIndexStatusYellow({
client,
index: '.kibana_1',
})();

const res = (await reindex({
client,
sourceIndex: 'existing_index_with_docs',
Expand Down

0 comments on commit a972c50

Please sign in to comment.