Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Jul 30, 2024
1 parent f060a4b commit a1ef7ce
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public ScanMode startingScanMode() {

@Override
public Result scan(SnapshotReader snapshotReader) {
if (startingSnapshotId == null) {
// try to get first snapshot again
startingSnapshotId = snapshotManager.latestSnapshotId();
}
if (startingSnapshotId == null) {
LOG.debug("There is currently no snapshot. Waiting for snapshot generation.");
return new NoSnapshot();
Expand Down

0 comments on commit a1ef7ce

Please sign in to comment.