Skip to content

Commit

Permalink
fix EARLIEST value
Browse files Browse the repository at this point in the history
  • Loading branch information
askwang committed May 27, 2024
1 parent f1154f5 commit 12db48c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public int expireUntil(long earliestId, long endExclusiveId) {
// write the hint file in order to see the earliest snapshot directly next time
// should avoid duplicate writes when the file exists
if (snapshotManager.readHint(SnapshotManager.EARLIEST) == null) {
writeEarliestHint(endExclusiveId);
writeEarliestHint(earliestId);
}

// fast exit
Expand Down

0 comments on commit 12db48c

Please sign in to comment.