File tree 1 file changed +4
-6
lines changed
python/code_saturne/studymanager
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -479,12 +479,6 @@ def prepare_run_folder(self):
479
479
480
480
log_run = open (log_path , mode = 'w' )
481
481
482
- if self .no_restart :
483
- fail_info = 'CANCELLED due to unusable restart'
484
- log_lines += [' * prepare run folder: {0} --> {1}' .format (self .title , fail_info )]
485
- log_lines += [' - see ' + self .depends ]
486
- return log_lines
487
-
488
482
if self .subdomains :
489
483
if not os .path .isdir (self .label ):
490
484
os .mkdir (self .label )
@@ -1750,6 +1744,10 @@ def dump_graph(self):
1750
1744
if msg :
1751
1745
self .reporting ("Warning in global graph: " + msg )
1752
1746
1747
+ if case .no_restart :
1748
+ self .reporting (" WARNING: " + case .title + " was cancelled." )
1749
+ self .reporting (" The restart folder seems problematic. See " + case .depends )
1750
+
1753
1751
# extract the sub graph based on filters and tags
1754
1752
if filter_level is not None or filter_n_procs is not None :
1755
1753
You can’t perform that action at this time.
0 commit comments