Skip to content

Build: rclone retries when uploading artifacts #9954

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions readthedocs/storage/rclone.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ class BaseRClone:
# Skip based on checksum (if available) & size, not mod-time & size.
"--checksum",
"--verbose",
# Retry some times before failing
# (3 is the default, but making it explicit here)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️

"--retries=3",
# Wait 1 second between each retry
"--retries-sleep=1",
]
env_vars = {}

Expand Down