File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ if 'WORKFLOWMODE' in os.environ:
4444else :
4545 os .environ ['WORKFLOWMODE' ] = 'dds'
4646
47+ if 'O2_NO_CATCHALL_EXCEPTIONS' in os .environ :
48+ os .unsetenv ("O2_NO_CATCHALL_EXCEPTIONS" )
49+
4750if 'RECO_NUM_NODES_OVERRIDE' in os .environ and os .environ ['RECO_NUM_NODES_OVERRIDE' ] != '' and int (os .environ ['RECO_NUM_NODES_OVERRIDE' ]) > 0 :
4851 reco_num_nodes_override = int (os .environ ['RECO_NUM_NODES_OVERRIDE' ])
4952 os .environ ['RECO_NUM_NODES_WORKFLOW' ] = str (reco_num_nodes_override )
@@ -137,7 +140,6 @@ for line in f:
137140 command += ' > ' + filename
138141 print ('Running DPL command' , command )
139142 retVal = subprocess .run (command , shell = True )
140- print ('Returned with ' , retVal .returncode )
141143 if retVal .returncode != 0 :
142144 print ('Error (' + str (retVal ) + ') running command' , command )
143145 ftmp = open (filename , 'r' )
You can’t perform that action at this time.
0 commit comments