-
Notifications
You must be signed in to change notification settings - Fork 354
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
[JENKINS-64418] Add exponential backoff to BitBucket rate limit retry loop #927
Open
nfalco79
wants to merge
1
commit into
master
Choose a base branch
from
feature/JENKINS-64418
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
from
November 27, 2024 15:50
d8491ae
to
235c619
Compare
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/BitbucketCloudApiClient.java
Dismissed
Show dismissed
Hide dismissed
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/internal/api/AbstractBitbucketApi.java
Fixed
Show fixed
Hide fixed
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/internal/api/AbstractBitbucketApi.java
Fixed
Show fixed
Hide fixed
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/internal/api/AbstractBitbucketApi.java
Fixed
Show fixed
Hide fixed
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/internal/api/AbstractBitbucketApi.java
Fixed
Show fixed
Hide fixed
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/internal/api/AbstractBitbucketApi.java
Fixed
Show fixed
Hide fixed
...ain/java/com/cloudbees/jenkins/plugins/bitbucket/server/client/BitbucketServerAPIClient.java
Fixed
Show fixed
Hide fixed
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
from
November 27, 2024 15:53
235c619
to
5dc6181
Compare
Closed
6 tasks
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
4 times, most recently
from
November 28, 2024 00:34
c6d97bd
to
5945671
Compare
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
from
November 30, 2024 10:43
5945671
to
9bef7e5
Compare
nfalco79
changed the title
[JENKINS-644418] Add exponential backoff to BitBucket rate limit retry loop
[JENKINS-64418] Add exponential backoff to BitBucket rate limit retry loop
Dec 2, 2024
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
5 times, most recently
from
December 7, 2024 20:39
c4e8a30
to
f79c376
Compare
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/impl/client/AbstractBitbucketApi.java
Dismissed
Show dismissed
Hide dismissed
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/impl/client/AbstractBitbucketApi.java
Fixed
Show fixed
Hide fixed
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
4 times, most recently
from
December 12, 2024 13:42
e449a81
to
f8207f9
Compare
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
2 times, most recently
from
December 15, 2024 15:48
cbff191
to
876a25c
Compare
...ins/plugins/bitbucket/impl/client/ExponentialBackOffServiceUnavailableRetryStrategyTest.java
Fixed
Show fixed
Hide fixed
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
from
December 15, 2024 15:59
876a25c
to
b8025d9
Compare
6 tasks
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
from
December 15, 2024 16:12
b8025d9
to
2f719d7
Compare
… loop Configure Apache HTTP client to use an exponential backoff retry strategy
nfalco79
force-pushed
the
feature/JENKINS-64418
branch
from
December 15, 2024 16:17
2f719d7
to
e21db01
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Refactory both server/cloud client to share the client management.
Use apache http client configuration to retry on HTTP 429 (too many connection) response.