Skip to content

Commit

Permalink
spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
pmchung committed Aug 22, 2023
1 parent 032c21e commit 4ed21e7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ private Map<String, Object> completeTask(

if (retry) {
status = TaskModel.Status.FAILED;
} else if (status.equals(TaskModel.Status.FAILED_WITH_TERMINAL_ERROR) && failReason != null) {
} else if (status.equals(TaskModel.Status.FAILED_WITH_TERMINAL_ERROR)
&& failReason != null) {
taskModel.setReasonForIncompletion(failReason);
}

Expand Down

0 comments on commit 4ed21e7

Please sign in to comment.