1
1

If we have ordered jobs to terminate, then we should ignore comm_failed reports from daemons as they may be dropping out

This commit was SVN r23185.
Этот коммит содержится в:
Ralph Castain 2010-05-20 12:37:09 +00:00
родитель 05e05089b8
Коммит ef3c88cbd2

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

@ -369,6 +369,10 @@ static int update_state(orte_jobid_t job,
case ORTE_PROC_STATE_COMM_FAILED:
/* is this to a daemon? */
if (ORTE_PROC_MY_NAME->jobid == proc->jobid) {
/* if we have ordered jobs to terminate, ignore this */
if (orte_job_term_ordered) {
break;
}
/* if this is my own connection, ignore it */
if (ORTE_PROC_MY_NAME->vpid == proc->vpid) {
break;