Skip to content

Commit

Permalink
genrepo: Disable file transfer progress in s3 sync
Browse files Browse the repository at this point in the history
  • Loading branch information
elprans committed Sep 5, 2023
1 parent 1f5333a commit 943fa4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/containers/genrepo/process_incoming.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def sync_to_local(
delete: bool = True,
exact_timestamps: bool = False,
) -> None:
cmd = ["aws", "s3", "sync"]
cmd = ["aws", "s3", "sync", "--no-progress"]
if delete:
cmd.append("--delete")
if exact_timestamps:
Expand All @@ -477,7 +477,7 @@ def sync_to_s3(
delete: bool = True,
cache_control: str = "",
) -> None:
cmd = ["aws", "s3", "sync"]
cmd = ["aws", "s3", "sync", "--no-progress"]
if delete:
cmd.append("--delete")
if cache_control:
Expand Down

0 comments on commit 943fa4e

Please sign in to comment.