Skip to content
Snippets Groups Projects
Commit ebbddd30 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8437: Fixed accidental removal of ,

parent 63d8f36d
No related branches found
No related tags found
No related merge requests found
...@@ -249,7 +249,7 @@ class copier(MasterNodeInterface): ...@@ -249,7 +249,7 @@ class copier(MasterNodeInterface):
# Run the compute nodes with the node specific mapfiles # Run the compute nodes with the node specific mapfiles
for source, target in zip(self.source_map, self.target_map): for source, target in zip(self.source_map, self.target_map):
args = [source.host, source.file, target.file, globalfs] args = [source.host, source.file, target.file, globalfs]
self.append_job(target.host args) self.append_job(target.host, args)
# start the jobs, return the exit status. # start the jobs, return the exit status.
return self.run_jobs() return self.run_jobs()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment