Skip to content

Commit

Permalink
Merge remote-tracking branch 'apache/master' into queryResultPusher-c…
Browse files Browse the repository at this point in the history
…ause-fix
  • Loading branch information
kgyrtkirk committed Sep 19, 2023
2 parents 9791b9d + d459df8 commit 1433dc1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ public boolean deletePeonJob(K8sTaskId taskId)
.withName(taskId.getK8sJobName())
.delete().isEmpty());
if (result) {
log.info("Cleaned up k8s task: %s", taskId);
log.info("Cleaned up k8s job: %s", taskId);
} else {
log.info("K8s task does not exist: %s", taskId);
log.info("K8s job does not exist: %s", taskId);
}
return result;
} else {
log.info("Not cleaning up task %s due to flag: debugJobs=true", taskId);
log.info("Not cleaning up job %s due to flag: debugJobs=true", taskId);
return true;
}
}
Expand Down

0 comments on commit 1433dc1

Please sign in to comment.