1
1

Ensure we fail if remote nodes cannot find executable

Signed-off-by: Ralph Castain <rhc@open-mpi.org>
Этот коммит содержится в:
Ralph Castain 2018-02-05 19:31:43 -08:00
родитель 71980fe8e5
Коммит ce901ba247

Просмотреть файл

@ -594,6 +594,14 @@ static void proc_errors(int fd, short args, void *cbdata)
* so that we send a consolidated error report * so that we send a consolidated error report
* back to the HNP * back to the HNP
*/ */
if (jdata->num_local_procs == jdata->num_terminated) {
/* let the state machine know */
if (ORTE_PROC_STATE_FAILED_TO_START == state) {
ORTE_ACTIVATE_JOB_STATE(jdata, ORTE_JOB_STATE_FAILED_TO_START);
} else {
ORTE_ACTIVATE_JOB_STATE(jdata, ORTE_JOB_STATE_FAILED_TO_LAUNCH);
}
}
goto cleanup; goto cleanup;
} }