File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -80,14 +80,6 @@ def make_job_name(jobnumber, nodeslist):
80
80
for idx , pyscript in enumerate (pyfiles ):
81
81
node = nodes [idx ]
82
82
node_status_done = node_completed_status (node )
83
- ## If a node has no dependencies, and it is requested to run_without_submitting
84
- ## then run this node in place
85
- if (not node_status_done ) and (len (dependencies [idx ]) == 0 ) and (node .run_without_submitting == True ):
86
- try :
87
- node .run ()
88
- except Exception :
89
- node ._clean_queue (idx , nodes )
90
- node_status_done = True # if successfully run locally, then claim true
91
83
92
84
#if the node itself claims done, then check to ensure all
93
85
#dependancies are also done
Original file line number Diff line number Diff line change @@ -78,14 +78,6 @@ def make_job_name(jobnumber, nodeslist):
78
78
for idx , pyscript in enumerate (pyfiles ):
79
79
node = nodes [idx ]
80
80
node_status_done = node_completed_status (node )
81
- ## If a node has no dependencies, and it is requested to run_without_submitting
82
- ## then run this node in place
83
- if (not node_status_done ) and (len (dependencies [idx ]) == 0 ) and (node .run_without_submitting == True ):
84
- try :
85
- node .run ()
86
- except Exception :
87
- node ._clean_queue (idx , nodes )
88
- node_status_done = True # if successfully run locally, then claim true
89
81
90
82
#if the node itself claims done, then check to ensure all
91
83
#dependancies are also done
You can’t perform that action at this time.
0 commit comments