Skip to content

Commit

Permalink
Fix SLMSnapshotBlockingIntegTests (#47841)
Browse files Browse the repository at this point in the history
One of the tests in this suit stops a master node,
plus we're doing other node starts in this suit.
=> the internal test cluster should be TEST and not `SUITE`
scoped to avoid random failures like the one in #47834

Closes #47834
  • Loading branch information
original-brownbear authored Oct 10, 2019
1 parent f966fa1 commit 4cdc203
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
*/
@TestLogging(value = "org.elasticsearch.xpack.slm:TRACE,org.elasticsearch.xpack.core.slm:TRACE",
reason = "https://github.com/elastic/elasticsearch/issues/46508")
@ESIntegTestCase.ClusterScope(scope = ESIntegTestCase.Scope.TEST)
public class SLMSnapshotBlockingIntegTests extends ESIntegTestCase {

static final String REPO = "my-repo";
Expand Down Expand Up @@ -133,7 +134,6 @@ public void testSnapshotInProgress() throws Exception {
}
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/47834")
public void testRetentionWhileSnapshotInProgress() throws Exception {
final String indexName = "test";
final String policyId = "slm-policy";
Expand Down

0 comments on commit 4cdc203

Please sign in to comment.