From abfc7c60763f001290455f81066b904f2e277b6e Mon Sep 17 00:00:00 2001 From: Josh Hursey Date: Wed, 21 Jan 2009 14:08:16 +0000 Subject: [PATCH] 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. --- orte/tools/orte-restart/orte-restart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/tools/orte-restart/orte-restart.c b/orte/tools/orte-restart/orte-restart.c index 70dc95ef82..82c29c27e9 100644 --- a/orte/tools/orte-restart/orte-restart.c +++ b/orte/tools/orte-restart/orte-restart.c @@ -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; }