1
1

If we are going to pretend to do filem, then we should always pretend.

No one should be using this feature except for me. :)

This commit was SVN r16454.
Этот коммит содержится в:
Josh Hursey 2007-10-15 20:04:35 +00:00
родитель b6196e8a39
Коммит ea0652d20f

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

@ -926,10 +926,17 @@ static int snapc_full_global_gather_all_files(void) {
OBJ_CONSTRUCT(&all_filem_requests, opal_list_t);
/*
* If we just want to pretend to do the filem
*/
if(orte_snapc_full_skip_filem) {
exit_status = ORTE_SUCCESS;
goto cleanup;
}
/*
* If it is stored in place, then we do not need to transfer anything
*/
if( orte_snapc_base_store_in_place ) {
else if( orte_snapc_base_store_in_place ) {
for(item = opal_list_get_first(&global_snapshot.snapshots);
item != opal_list_get_end(&global_snapshot.snapshots);
item = opal_list_get_next(item) ) {
@ -962,13 +969,6 @@ static int snapc_full_global_gather_all_files(void) {
}
}
}
/*
* If we just want to pretend to do the filem
*/
else if(orte_snapc_full_skip_filem) {
exit_status = ORTE_SUCCESS;
goto cleanup;
}
/*
* If *not* stored in place then use FileM to transfer the files and cleanup
*/