Skip to content

Commit e34aa7b

Browse files
committed
Signed-off-by: Anandhi S Jayakumar <[email protected]>
Adding error logging on failures modified: ../orte/mca/rml/ofi/rml_ofi_component.c
1 parent 2217f52 commit e34aa7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orte/mca/rml/ofi/rml_ofi_component.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ static char* ofi_get_contact_info(void)
10741074

10751075
/* start with our process name */
10761076
if (ORTE_SUCCESS != (rc = orte_util_convert_process_name_to_string(&final, ORTE_PROC_MY_NAME))) {
1077-
/* [TODO] ORTE_ERROR_LOG(rc);*/
1077+
ORTE_ERROR_LOG(rc);
10781078
return final;
10791079
}
10801080

@@ -1116,7 +1116,7 @@ static void ofi_set_contact_info (const char *uri)
11161116
*/
11171117
if (NULL == uri) {
11181118
opal_output(0, "%s: NULL URI", ORTE_NAME_PRINT(ORTE_PROC_MY_NAME));
1119-
/* [TODO] ORTE_FORCED_TERMINATE(1);*/
1119+
ORTE_FORCED_TERMINATE(1);
11201120
return;
11211121
}
11221122

0 commit comments

Comments
 (0)