mirror of https://github.com/apache/druid.git
Fix log syntax (#15004)
This commit is contained in:
parent
973fbaf962
commit
d459df8d6e
|
@ -121,13 +121,13 @@ public class KubernetesPeonClient
|
||||||
.withName(taskId.getK8sJobName())
|
.withName(taskId.getK8sJobName())
|
||||||
.delete().isEmpty());
|
.delete().isEmpty());
|
||||||
if (result) {
|
if (result) {
|
||||||
log.info("Cleaned up k8s task: %s", taskId);
|
log.info("Cleaned up k8s job: %s", taskId);
|
||||||
} else {
|
} else {
|
||||||
log.info("K8s task does not exist: %s", taskId);
|
log.info("K8s job does not exist: %s", taskId);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
} else {
|
} 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;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue