Skip to content

Commit

Permalink
rename task list
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinKirs committed Dec 16, 2024
1 parent 1f57aff commit 8493993
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,12 @@ public void run() throws JobException {

@Override
public void onFail() throws JobException {
if (isCanceled.get()) {
if (null != isCanceled && isCanceled.get()) {
return;
}
isFinished.set(true);
if (null != isFinished) {
isFinished.set(true);
}
super.onFail();
}

Expand Down

0 comments on commit 8493993

Please sign in to comment.