Skip to content

Commit 347c5ff

Browse files
committed
fix(worker): Backup push requires --all
1 parent 871f977 commit 347c5ff

File tree

1 file changed

+1
-1
lines changed
  • services/datalad/datalad_service/common

1 file changed

+1
-1
lines changed

services/datalad/datalad_service/common/s3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ async def s3_export(dataset_path, target, treeish):
190190
async def s3_backup_push(dataset_path):
191191
"""Perform an S3 push to the backup remote on a git-annex repo."""
192192
await run_check(
193-
['git-annex', 'push', get_s3_backup_remote()],
193+
['git-annex', 'push', '--all', get_s3_backup_remote()],
194194
dataset_path,
195195
env=backup_remote_env(),
196196
)

0 commit comments

Comments
 (0)