fix k8s task run fail (#13348)

This commit is contained in:
caishunfeng 2023-01-06 12:44:12 +11:00 committed by GitHub
parent 313ba4444f
commit ba0a253f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -155,8 +155,13 @@ public class K8sTaskExecutor extends AbstractK8sTaskExecutor {
@Override
public void eventReceived(Action action, Job job) {
logger.info("event received : job:{} action:{}", job.getMetadata().getName(), action);
if (action != Action.ADDED) {
int jobStatus = getK8sJobStatus(job);
logger.info("job {} status {}", job.getMetadata().getName(), jobStatus);
if (jobStatus == TaskConstants.RUNNING_CODE) {
return;
}
setTaskStatus(jobStatus, taskInstanceId, taskResponse, k8STaskMainParameters);
countDownLatch.countDown();
}