Skip to content

Commit

Permalink
made aws calls quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Feb 15, 2024
1 parent 9168746 commit d371063
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xnat_ingest/cli/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ def transfer(
"aws",
"s3",
"sync",
"--quiet",
str(session_dir),
remote_path,
]
Expand All @@ -274,7 +275,7 @@ def transfer(
logger.debug(
"Transferring %s to %s via SSH", session_dir, remote_store
)
sp.check_call(["rsync", str(session_dir), remote_path])
sp.check_call(["rsync", "--quiet", str(session_dir), remote_path])
else:
assert False
if delete:
Expand Down

0 comments on commit d371063

Please sign in to comment.