1
1

Per ticket #1527 orte-restart should be using {{{--default-hostfile}}} instead of {{{--hostfile}}} with app contexts.

Thanks to Gregor Dschung for reporting the problem.

This commit was SVN r20305.
Этот коммит содержится в:
Josh Hursey 2009-01-21 14:08:16 +00:00
родитель 5d9de3326c
Коммит abfc7c6076

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

@ -519,7 +519,7 @@ static int spawn_children(orte_snapc_base_global_snapshot_t *snapshot, pid_t *ch
goto cleanup;
}
if( NULL != orte_restart_globals.hostfile ) {
if( ORTE_SUCCESS != (ret = opal_argv_append(&argc, &argv, "--hostfile")) ) {
if( ORTE_SUCCESS != (ret = opal_argv_append(&argc, &argv, "--default-hostfile")) ) {
exit_status = ret;
goto cleanup;
}