Unmuted testCannotFollowLeaderInUpgradedCluster test.

Relates to #39355
This commit is contained in:
Martijn van Groningen 2019-02-27 09:20:41 +01:00
parent 41668f7723
commit a427a28318
No known key found for this signature in database
GPG Key ID: AB236F4FCF2AF12A
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,6 @@ public class CcrRollingUpgradeIT extends AbstractMultiClusterUpgradeTestCase {
}
}
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/39355")
public void testCannotFollowLeaderInUpgradedCluster() throws Exception {
assumeTrue("Tests only runs with upgrade_state [all]", upgradeState == UpgradeState.ALL);
@ -224,7 +223,8 @@ public class CcrRollingUpgradeIT extends AbstractMultiClusterUpgradeTestCase {
assertThat(e.getMessage(), containsString("] which is higher than the version of this node ["));
} else if (clusterName == ClusterName.LEADER) {
// At this point all nodes in both clusters have been updated and
// the leader cluster can now follow leader_index4 in the follower cluster:
// the leader cluster can now follow not_supported index in the follower cluster:
ensureGreen(followerClient(), "not_supported");
followIndex(leaderClient(), "follower", "not_supported", "not_supported");
assertTotalHitCount("not_supported", 64, leaderClient());
} else {