1
1

Silly me - now that all daemons are stripping their prefix on the backend, we no longer need to do it as they report

This commit was SVN r27023.
Этот коммит содержится в:
Ralph Castain 2012-08-13 20:48:13 +00:00
родитель b9b41d8662
Коммит 49a757e0bd

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

@ -620,21 +620,6 @@ void orte_plm_base_daemon_callback(int status, orte_process_name_t* sender,
nodename = ptr;
}
}
if (orte_process_info.strip_prefix_from_node_names) {
/* remove all leading characters and zeroes */
ptr = nodename;
while (idx < (int)strlen(nodename) &&
(isalpha(nodename[idx]) || '0' == nodename[idx])) {
idx++;
}
if (idx == (int)strlen(nodename)) {
ptr = strdup(nodename);
} else {
ptr = strdup(&nodename[idx]);
}
free(nodename);
nodename = ptr;
}
OPAL_OUTPUT_VERBOSE((5, orte_plm_globals.output,
"%s plm:base:orted_report_launch attempting to assign daemon %s to node %s",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),