Skip to content

Commit 77d7547

Browse files
committed
Fix compilation after merge from master
1 parent 853eb1c commit 77d7547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/test/java/org/elasticsearch/index/engine/InternalEngineTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4472,7 +4472,7 @@ public void testCleanUpCommitsWhenGlobalCheckpointAdvanced() throws Exception {
44724472
globalCheckpoint.set(randomLongBetween(engine.getLocalCheckpoint(), Long.MAX_VALUE));
44734473
engine.syncTranslog();
44744474
assertThat(DirectoryReader.listCommits(store.directory()), contains(commits.get(commits.size() - 1)));
4475-
assertThat(engine.estimateTranslogOperationsFromMinSeq(0L), equalTo(0));
4475+
assertThat(engine.getTranslog().totalOperations(), equalTo(0));
44764476
}
44774477
}
44784478

0 commit comments

Comments
 (0)