Skip to content

Commit

Permalink
[Fix][Server] Fix Job Execution update_time will not be updated (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxzuo authored Dec 5, 2023
1 parent 71a26ef commit 81c8513
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public long create(JobExecution jobExecution) {

@Override
public int update(JobExecution jobExecution) {
jobExecution.setUpdateTime(LocalDateTime.now());
return baseMapper.updateById(jobExecution);
}

Expand Down

0 comments on commit 81c8513

Please sign in to comment.