From b7430cbb654d236769757e843d5d040b19e963e0 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 26 Mar 2026 15:44:46 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20add=20--transfers=201=20--retries=205=20?= =?UTF-8?q?to=20rclone=20=E2=80=94=20workaround=20for=20Proton=20Drive=20p?= =?UTF-8?q?arallel=20upload=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://claude.ai/code/session_01FKCW3FDjNFj6jve4niMFXH --- infra/backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/backup.sh b/infra/backup.sh index feaa894..a2c601a 100755 --- a/infra/backup.sh +++ b/infra/backup.sh @@ -140,7 +140,7 @@ log "Archive size: ${ARCHIVE_SIZE}" if [ -n "${BACKUP_REMOTE}" ]; then if command -v rclone &>/dev/null; then log "Uploading to ${BACKUP_REMOTE}…" - rclone copy "${ARCHIVE_PATH}" "${BACKUP_REMOTE}/" + rclone copy --transfers 1 --retries 5 "${ARCHIVE_PATH}" "${BACKUP_REMOTE}/" log "Upload complete." else log "WARNING: HIY_BACKUP_REMOTE is set but rclone is not installed — skipping"