Skip to content

Commit

Permalink
Unmuted testCannotFollowLeaderInUpgradedCluster test.
Browse files Browse the repository at this point in the history
Relates to #39355
  • Loading branch information
martijnvg committed Feb 27, 2019
1 parent dbb9331 commit 852f448
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ public void testAutoFollowing() throws Exception {
}
}

@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);

Expand All @@ -223,7 +222,8 @@ public void testCannotFollowLeaderInUpgradedCluster() throws Exception {
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 {
Expand Down

0 comments on commit 852f448

Please sign in to comment.