Skip to content

Commit

Permalink
Drop effective_workflow in remote command.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed May 7, 2024
1 parent 893eb5f commit 62d4576
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion law/contrib/arc/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def create_job_file(self, job_num, branches):
task.exclude_params_workflow |
task.exclude_params_remote_workflow |
task.exclude_params_arc_workflow |
{"workflow"}
{"workflow", "effective_workflow"}
)
proxy_cmd = ProxyCommand(
task.as_branch(branches[0]),
Expand Down
2 changes: 1 addition & 1 deletion law/contrib/cms/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def create_job_file(self, submit_jobs):
task.exclude_params_workflow |
task.exclude_params_remote_workflow |
task.exclude_params_crab_workflow |
{"workflow"}
{"workflow", "effective_workflow"}
)
proxy_cmd = ProxyCommand(
task.as_branch(),
Expand Down
2 changes: 1 addition & 1 deletion law/contrib/glite/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def create_job_file(self, job_num, branches):
task.exclude_params_workflow |
task.exclude_params_remote_workflow |
task.exclude_params_glite_workflow |
{"workflow"}
{"workflow", "effective_workflow"}
)
proxy_cmd = ProxyCommand(
task.as_branch(branches[0]),
Expand Down
2 changes: 1 addition & 1 deletion law/contrib/htcondor/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def create_job_file(self, job_num, branches):
task.exclude_params_workflow |
task.exclude_params_remote_workflow |
task.exclude_params_htcondor_workflow |
{"workflow"}
{"workflow", "effective_workflow"}
)
proxy_cmd = ProxyCommand(
task.as_branch(branches[0]),
Expand Down
2 changes: 1 addition & 1 deletion law/contrib/lsf/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def create_job_file(self, job_num, branches):
task.exclude_params_workflow |
task.exclude_params_remote_workflow |
task.exclude_params_lsf_workflow |
{"workflow"}
{"workflow", "effective_workflow"}
)
proxy_cmd = ProxyCommand(
task.as_branch(branches[0]),
Expand Down
2 changes: 1 addition & 1 deletion law/contrib/slurm/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def create_job_file(self, job_num, branches):
task.exclude_params_workflow |
task.exclude_params_remote_workflow |
task.exclude_params_slurm_workflow |
{"workflow"}
{"workflow", "effective_workflow"}
)
proxy_cmd = ProxyCommand(
task.as_branch(branches[0]),
Expand Down

0 comments on commit 62d4576

Please sign in to comment.