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 3cfd299 commit 6564243
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 @@ -79,7 +79,7 @@ def create_job_file(
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 @@ -103,7 +103,7 @@ def create_job_file_group(
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 @@ -97,7 +97,7 @@ def create_job_file(
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 @@ -73,7 +73,7 @@ def create_job_file(
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 @@ -73,7 +73,7 @@ def create_job_file(
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 @@ -72,7 +72,7 @@ def create_job_file(
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 6564243

Please sign in to comment.