-
Notifications
You must be signed in to change notification settings - Fork 11
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
Retry on particular HTTP errors #41
Labels
Comments
Sounds useful and should be possible :) |
saitho
added a commit
that referenced
this issue
Feb 12, 2023
Remote Git operations may fail due to network or the Git server being not available. In this case retry up to 3 times with a fixed cooldown time of 1 second. The following operations use retry: fetch, push, checkout Resolves: #41
saitho
added a commit
that referenced
this issue
Feb 12, 2023
Remote Git operations may fail due to network or the Git server being not available. In this case retry up to 3 times with a fixed cooldown time of 1 second. The following operations use retry: fetch, push, checkout Resolves: #41
It should now retry up to 3 times with 1 seconds in between for all errors on remote Git commands |
github-actions bot
pushed a commit
that referenced
this issue
Feb 12, 2023
# [3.1.0](v3.0.0...v3.1.0) (2023-02-12) ### Features * retry remote Git operations ([3138c56](3138c56)), closes [#41](#41)
🎉 This issue has been resolved in version 3.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GitLab can throw intermittent 503's, causing this plugin to fail (and thus the entire semantic-release job)
An example of a failure which just occurred.
Would there be a way to handle 503 by retrying for a few times until it does (or until the wait time is over)?
The text was updated successfully, but these errors were encountered: