Skip to content

Commit

Permalink
Fixing compile errors.
Browse files Browse the repository at this point in the history
Signed-off-by: Rishikesh1159 <rishireddy1159@gmail.com>
  • Loading branch information
Rishikesh1159 committed Mar 10, 2023
1 parent f285ba3 commit 83a1cac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,8 @@ public void testWaitUntilRefresh() throws Exception {
assertBusy(() -> {
assertTrue(pendingIndexResponses.stream().allMatch(response -> response.actionGet().status().equals(RestStatus.CREATED)));
assertEquals(
primaryShard.getLatestReplicationCheckpoint().getSeqNo(),
replicaShard.getLatestReplicationCheckpoint().getSeqNo()
primaryShard.getProcessedLocalCheckpoint(),
replicaShard.getProcessedLocalCheckpoint()
);
}, 1, TimeUnit.MINUTES);
assertHitCount(client(primaryNode).prepareSearch(INDEX_NAME).setPreference("_only_local").setSize(0).get(), initialDocCount);
Expand Down

0 comments on commit 83a1cac

Please sign in to comment.