We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef1d345 commit 51ad65bCopy full SHA for 51ad65b
core/src/main/java/org/elasticsearch/index/seqno/GlobalCheckpointTracker.java
@@ -314,7 +314,7 @@ synchronized void updateAllocationIdsFromPrimaryContext(final SeqNoPrimaryContex
314
*/
315
for (final ObjectLongCursor<String> cursor : seqNoPrimaryContext.inSyncLocalCheckpoints()) {
316
updateLocalCheckpoint(cursor.key, cursor.value);
317
- '' assert cursor.value >= globalCheckpoint
+ assert cursor.value >= globalCheckpoint
318
: "local checkpoint [" + cursor.value + "] violates being at least the global checkpoint [" + globalCheckpoint + "]";
319
try {
320
markAllocationIdAsInSync(cursor.key, cursor.value);
0 commit comments