Skip reindex rethrottle tests with workers

They are flakey and spuriously fail the build. I'll hunt down
the cause soon and reenabled but for now they should stop.

Relates #21446
This commit is contained in:
Nik Everett 2016-11-09 17:50:09 -05:00
parent 3ae2e9bbc6
commit b0f5ea3f59
1 changed files with 3 additions and 0 deletions

View File

@ -53,14 +53,17 @@ public class RethrottleTests extends ReindexTestCase {
testCase(deleteByQuery().source("test"), DeleteByQueryAction.NAME);
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/21446")
public void testReindexWithWorkers() throws Exception {
testCase(reindex().source("test").destination("dest").setSlices(between(2, 10)), ReindexAction.NAME);
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/21446")
public void testUpdateByQueryWithWorkers() throws Exception {
testCase(updateByQuery().source("test").setSlices(between(2, 10)), UpdateByQueryAction.NAME);
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/21446")
public void testDeleteByQueryWithWorkers() throws Exception {
testCase(deleteByQuery().source("test").setSlices(between(2, 10)), DeleteByQueryAction.NAME);
}