Skip to content

Commit

Permalink
chore: parallelize custom file uploads (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
adlersantos committed Sep 1, 2021
1 parent 8371856 commit 2d2e789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy_dag.py
Expand Up @@ -272,7 +272,7 @@ def copy_custom_callables_to_airflow_dags_folder(
f" Source:\n {cwd / 'custom'}\n\n"
f" Destination:\n {target}\n"
)
run_gsutil_cmd(["cp", "-r", "custom", target], cwd=cwd)
run_gsutil_cmd(["-m", "cp", "-r", "custom", target], cwd=cwd)


def check_existence_of_variables_file(file_path: pathlib.Path):
Expand Down

0 comments on commit 2d2e789

Please sign in to comment.