Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,6 @@ public void persist(
}
}

void maybePruneState(Object key, long sequenceNum) throws Exception {
if (actionStateStore != null) {
actionStateStore.pruneState(key, sequenceNum);
}
}

/**
* Prunes durable state for all per-key sequence numbers that were captured at the time of the
* given checkpoint.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ void noStoreModeMakesAllMaybeOperationsNoOp() throws Exception {
// Every maybe* method must be a silent no-op.
assertThat(dem.maybeGetActionState("k", 0L, action, event)).isNull();
dem.maybeInitActionState("k", 0L, action, event);
dem.maybePruneState("k", 0L);
dem.notifyCheckpointComplete(1L);
dem.snapshotRecoveryMarker();
dem.close();
Expand Down
Loading