Skip to content

Commit

Permalink
Update IncrementalExecuteCallback
Browse files Browse the repository at this point in the history
  • Loading branch information
sandynz committed Sep 20, 2023
1 parent 787d1e9 commit 3bcacc2
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private final class InventoryTaskExecuteCallback implements ExecuteCallback {
@Override
public void onSuccess() {
if (jobItemContext.isStopping()) {
log.info("onSuccess, stopping true, ignore");
log.info("Inventory task onSuccess, stopping true, ignore");
return;
}
inventorySuccessCallback();
Expand All @@ -166,10 +166,6 @@ private final class IncrementalExecuteCallback implements ExecuteCallback {

@Override
public void onSuccess() {
if (jobItemContext.isStopping()) {
log.info("onSuccess, stopping true, ignore");
return;
}
log.info("onSuccess, all incremental tasks finished.");
}

Expand Down

0 comments on commit 3bcacc2

Please sign in to comment.