Skip to content

Commit

Permalink
Fix progress no push bug
Browse files Browse the repository at this point in the history
  • Loading branch information
peacewong committed Sep 4, 2023
1 parent f385cd8 commit 59b85cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ class TaskExecutionServiceImpl
override def run(): Unit = {
Utils.tryQuietly(Thread.sleep(TimeUnit.MILLISECONDS.convert(1, TimeUnit.SECONDS)))
while (null != taskFuture && !taskFuture.isDone) {
if (ExecutionNodeStatus.isCompleted(task.getStatus)) {
if (!ExecutionNodeStatus.isCompleted(task.getStatus)) {
Utils.tryAndWarn {
val progressResponse = Utils.tryAndWarn(taskProgress(task.getTaskId))
val resourceResponse = Utils.tryAndWarn(buildResourceMap(task))
Expand Down

0 comments on commit 59b85cf

Please sign in to comment.