File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class DispatcherExecutor(Executor):
3535 username: username
3636 private_key_file: private key file for SSH
3737 image: image for dispatcher
38- image : image pull policy for dispatcher
38+ imagePullPolicy : image pull policy for dispatcher
3939 command: command for dispatcher
4040 remote_command: command for running the script remotely
4141 map_tmp_dir: map /tmp to ./tmp
@@ -191,6 +191,8 @@ def render(self, template):
191191 "loads('%s'))\n " % json .dumps (self .resources_dict )
192192 new_template .script += "task = Task.load_from_dict(json.loads('%s'))" \
193193 "\n " % json .dumps (self .task_dict )
194+ new_template .script += "task.forward_files = list(filter(" \
195+ "os.path.exists, task.forward_files))\n "
194196 new_template .script += "submission = Submission(work_base='.', " \
195197 "machine=machine, resources=resources, task_list=[task])\n "
196198 new_template .script += "submission.run_submission()\n "
You can’t perform that action at this time.
0 commit comments