Skip to content

Commit

Permalink
RecoveryIT.testRecoveryWithConcurrentIndexing should check for 110 do…
Browse files Browse the repository at this point in the history
…cs in an upgraded cluster

Closes #27650
  • Loading branch information
bleskes committed Dec 4, 2017
1 parent 84ec472 commit 0b50b31
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ public void testRecoveryWithConcurrentIndexing() throws Exception {
asyncIndexDocs(index, 60, 50).get();
ensureGreen(index);
assertOK(client().performRequest("POST", index + "/_refresh"));
assertCount(index, "_only_nodes:" + nodes.get(0), 60);
assertCount(index, "_only_nodes:" + nodes.get(1), 60);
assertCount(index, "_only_nodes:" + nodes.get(0), 110);
assertCount(index, "_only_nodes:" + nodes.get(1), 110);
break;
default:
throw new IllegalStateException("unknown type " + clusterType);
Expand Down

0 comments on commit 0b50b31

Please sign in to comment.