Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzm0809 committed Dec 26, 2023
1 parent b80aa22 commit a861733
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ public JobResult submitTask(TaskSubmitDto submitDto) throws Exception {
// The statement set is enabled by default when submitting assignments
taskDTO.setStatementSet(true);
JobResult jobResult = taskServiceBean.executeJob(taskDTO);
if ((jobResult.getStatus()==Job.JobStatus.FAILED)){
if ((jobResult.getStatus() == Job.JobStatus.FAILED)) {
throw new BusException(jobResult.getError());
}
log.info("Job Submit success");
Expand Down

0 comments on commit a861733

Please sign in to comment.