Skip to content

Commit 747ea46

Browse files
committed
fix(worker): Run full remote fsck instead of fast and check objects at most every 30 days
1 parent c25c7ef commit 747ea46

File tree

1 file changed

+1
-2
lines changed
  • services/datalad/datalad_service/tasks

1 file changed

+1
-2
lines changed

services/datalad/datalad_service/tasks/fsck.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,9 @@ def git_annex_fsck_remote(dataset_path, branch=None, remote='s3-PUBLIC'):
8686
'fsck',
8787
f'--branch={branch}',
8888
'--from={remote}',
89-
'--fast',
9089
'--json',
9190
'--json-error-messages',
92-
'--incremental-schedule=7d',
91+
'--incremental-schedule=30d',
9392
)
9493
annex_process = subprocess.Popen(
9594
annex_command, cwd=dataset_path, stdout=subprocess.PIPE

0 commit comments

Comments
 (0)