1
1

Merge pull request #1392 from rhc54/topic/dvm

Tools don't create the orte_job_data table, so don't remove jobs from it
Этот коммит содержится в:
rhc54 2016-02-21 17:42:48 -08:00
родитель 64b7728f33 77f800b7e8
Коммит 1df4457af2

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

@ -717,7 +717,7 @@ static void orte_job_destruct(orte_job_t* job)
/* release the attributes */ /* release the attributes */
OPAL_LIST_DESTRUCT(&job->attributes); OPAL_LIST_DESTRUCT(&job->attributes);
if (ORTE_JOBID_INVALID != job->jobid) { if (NULL != orte_job_data && ORTE_JOBID_INVALID != job->jobid) {
/* remove the job from the global array */ /* remove the job from the global array */
opal_hash_table_remove_value_uint32(orte_job_data, job->jobid); opal_hash_table_remove_value_uint32(orte_job_data, job->jobid);
} }