1
1

Fix a typo that causes segfaults on multi-node executions

Этот коммит содержится в:
Ralph Castain 2015-12-24 08:43:47 -08:00
родитель 0b3e3c6817
Коммит 8ab28cdc82

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

@ -349,7 +349,6 @@ int orte_ess_base_orted_setup(char **hosts)
proc->name.jobid = ORTE_PROC_MY_NAME->jobid;
proc->name.vpid = ORTE_PROC_MY_NAME->vpid;
proc->pid = orte_process_info.pid;
proc->rml_uri = orte_rml.get_contact_info();
proc->state = ORTE_PROC_STATE_RUNNING;
opal_pointer_array_set_item(jdata->procs, proc->name.vpid, proc);
/* record that the daemon (i.e., us) is on this node
@ -392,6 +391,9 @@ int orte_ess_base_orted_setup(char **hosts)
error = "orte_rml_base_select";
goto error;
}
/* add our contact info */
proc->rml_uri = orte_rml.get_contact_info();
/* Messaging QoS Layer */
if (ORTE_SUCCESS != (ret = mca_base_framework_open(&orte_qos_base_framework, 0))) {
ORTE_ERROR_LOG(ret);