Skip to content

Commit

Permalink
Merge pull request #71 from felix5572/master
Browse files Browse the repository at this point in the history
fix bug: will upload dirs for tasks
  • Loading branch information
felix5572 committed Jun 26, 2021
2 parents a38b617 + e277d8c commit fdf1f0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dpdispatcher/ssh_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ def upload(self,
file_list = []

# for ii in job_dirs :
for task in submission.belonging_tasks :
for task in submission.belonging_tasks:
file_list.append(task.task_work_path)
for jj in task.forward_files :
# file_list.append(os.path.join(ii, jj))
file_list.append(os.path.join(task.task_work_path, jj))
Expand Down

0 comments on commit fdf1f0b

Please sign in to comment.