RecoveryIT.testRecoveryWithConcurrentIndexing should check for 110 docs in an upgraded cluster

Closes #27650
This commit is contained in:
Boaz Leskes 2017-12-04 18:04:32 +01:00
parent 84ec472428
commit 0b50b313d2
1 changed files with 2 additions and 2 deletions

View File

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