RecoveryIT.testRecoveryWithConcurrentIndexing should check for 110 docs in an upgraded cluster
Closes #27650
This commit is contained in:
parent
84ec472428
commit
0b50b313d2
|
@ -189,8 +189,8 @@ public class RecoveryIT extends ESRestTestCase {
|
|||
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);
|
||||
|
|
Loading…
Reference in New Issue