Skip to content

Commit

Permalink
fixup: remove mailbox for async calls
Browse files Browse the repository at this point in the history
  • Loading branch information
akalash committed Sep 3, 2021
1 parent 1db15a9 commit 510c0e1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1299,8 +1299,8 @@ protected void finishTask() throws Exception {
CheckpointStorageLocationReference.getDefault()),
new CheckpointMetricsBuilder()),
"test");
executor.execute(() -> harness.streamTask.notifyCheckpointAbortAsync(1), "test");
executor.execute(() -> harness.streamTask.notifyCheckpointCompleteAsync(2), "test");
harness.streamTask.notifyCheckpointAbortAsync(1);
harness.streamTask.notifyCheckpointCompleteAsync(2);

harness.processAll();

Expand Down

0 comments on commit 510c0e1

Please sign in to comment.