File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ class SLURMGraphPlugin(GraphPluginBase):
44
44
"""
45
45
46
46
def __init__ (self , ** kwargs ):
47
- self ._qsub_args = ''
48
47
if 'plugin_args' in kwargs and kwargs ['plugin_args' ]:
49
48
if 'retry_timeout' in kwargs ['plugin_args' ]:
50
49
self ._retry_timeout = kwargs ['plugin_args' ]['retry_timeout' ]
@@ -131,7 +130,7 @@ def make_job_name(jobnumber, nodeslist):
131
130
values = ' '
132
131
for jobid in dependencies [idx ]:
133
132
## Avoid dependancies of done jobs
134
- if cache_doneness_per_node [jobid ] == False :
133
+ if not self . _dont_resubmit_completed_jobs or cache_doneness_per_node [jobid ] == False :
135
134
values += "${{{0}}}:" .format (make_job_name (jobid , nodes ))
136
135
if values != ' ' : # i.e. if some jobs were added to dependency list
137
136
values = values .rstrip (',' )
You can’t perform that action at this time.
0 commit comments