1
1

Merge pull request #1128 from rhc54/topic/warning

If an executable isn't found, it's possible for the state machine to…
Этот коммит содержится в:
rhc54 2015-11-11 17:50:49 -08:00
родитель 45c27843e1 986a8c1d48
Коммит 0d175bfca1
2 изменённых файлов: 6 добавлений и 0 удалений

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

@ -311,6 +311,11 @@ static int create_dmns(orte_grpcomm_signature_t *sig,
return ORTE_ERR_NOT_FOUND;
}
/* get the array */
if (0 == jdata->map->num_nodes) {
ORTE_UPDATE_EXIT_STATUS(ORTE_ERROR_DEFAULT_EXIT_CODE);
ORTE_ERROR_LOG(ORTE_ERR_BAD_PARAM);
return ORTE_ERR_SILENT;
}
dns = (orte_vpid_t*)malloc(jdata->map->num_nodes * sizeof(vpid));
nds = 0;
for (i=0; i < jdata->map->nodes->size && (int)nds < jdata->map->num_nodes; i++) {

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

@ -1652,6 +1652,7 @@ int orte_plm_base_setup_virtual_machine(orte_job_t *jdata)
"%s plm:base:setup_vm only HNP in use",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME)));
OBJ_DESTRUCT(&nodes);
map->num_nodes = 1;
/* mark that the daemons have reported so we can proceed */
daemons->state = ORTE_JOB_STATE_DAEMONS_REPORTED;
return ORTE_SUCCESS;