[Fix-11051][Task]Fix the process exitValue exception when the process times out and th… (#11099)
This commit is contained in:
parent
5fa3e7b1ed
commit
b79bad19e5
|
|
@ -230,8 +230,7 @@ public abstract class AbstractCommandExecutor {
|
|||
result.setExitStatusCode(process.exitValue());
|
||||
|
||||
} else {
|
||||
logger.error("process has failure , exitStatusCode:{}, processExitValue:{}, ready to kill ...",
|
||||
result.getExitStatusCode(), process.exitValue());
|
||||
logger.error("process has failure, the task timeout configuration value is:{}, ready to kill ...", taskRequest.getTaskTimeout());
|
||||
ProcessUtils.kill(taskRequest);
|
||||
result.setExitStatusCode(EXIT_CODE_FAILURE);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue