[CCR] Muted tests

Relates to #34696
This commit is contained in:
Martijn van Groningen 2018-10-22 08:47:31 +02:00
parent f51301a1a6
commit b6750cf6c2
No known key found for this signature in database
GPG Key ID: AB236F4FCF2AF12A
1 changed files with 2 additions and 0 deletions

View File

@ -271,6 +271,7 @@ public class IndexFollowingIT extends CCRIntegTestCase {
assertMaxSeqNoOfUpdatesIsTransferred(resolveLeaderIndex("index1"), resolveFollowerIndex("index2"), numberOfShards); assertMaxSeqNoOfUpdatesIsTransferred(resolveLeaderIndex("index1"), resolveFollowerIndex("index2"), numberOfShards);
} }
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/34696")
public void testFollowIndexAndCloseNode() throws Exception { public void testFollowIndexAndCloseNode() throws Exception {
getFollowerCluster().ensureAtLeastNumDataNodes(3); getFollowerCluster().ensureAtLeastNumDataNodes(3);
String leaderIndexSettings = getIndexSettings(3, 1, singletonMap(IndexSettings.INDEX_SOFT_DELETES_SETTING.getKey(), "true")); String leaderIndexSettings = getIndexSettings(3, 1, singletonMap(IndexSettings.INDEX_SOFT_DELETES_SETTING.getKey(), "true"));
@ -618,6 +619,7 @@ public class IndexFollowingIT extends CCRIntegTestCase {
assertThat(followerClient().prepareSearch("index2").get().getHits().getTotalHits(), equalTo(2L)); assertThat(followerClient().prepareSearch("index2").get().getHits().getTotalHits(), equalTo(2L));
} }
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/34696")
public void testFailOverOnFollower() throws Exception { public void testFailOverOnFollower() throws Exception {
int numberOfReplicas = between(1, 2); int numberOfReplicas = between(1, 2);
getFollowerCluster().startMasterOnlyNode(); getFollowerCluster().startMasterOnlyNode();