-
Notifications
You must be signed in to change notification settings - Fork 50
HTTP-122 Retry for source lookup table #148
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
maciejmaciejko-gid
merged 22 commits into
getindata:main
from
maciejmaciejko-gid:feature/retries
May 6, 2025
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
610d4b9
retry for source lookup table
maciejmaciejko-gid 16ffc35
changelog, readme, refactor
maciejmaciejko-gid a547bde
refactor after review
maciejmaciejko-gid e0c7bcc
increasing code coverage
maciejmaciejko-gid b67567a
Merge branch 'main' into feature/retries
maciejmaciejko-gid 680723b
increasing code coverage
maciejmaciejko-gid 9485f27
exposing retry metrics
maciejmaciejko-gid 853d23d
logging optimisation
maciejmaciejko-gid 0c5097b
removed unused metrics
maciejmaciejko-gid 75eaa2d
handling of max-retries param, readme fix, metric names convention
maciejmaciejko-gid 65de8b8
import order and style check
maciejmaciejko-gid 9753dea
clean up
maciejmaciejko-gid c3ed544
not managed retries
maciejmaciejko-gid 0a56ba0
reformat
maciejmaciejko-gid 3cf56da
reformat
maciejmaciejko-gid b08575d
reformat
maciejmaciejko-gid e497587
changelog fix
maciejmaciejko-gid dfb1133
clean up
maciejmaciejko-gid d9c4257
fail on error
maciejmaciejko-gid 195f4c3
ignored response codes can be omitted in success codes
maciejmaciejko-gid 95aa14e
ignored response codes can be omitted in success codes
maciejmaciejko-gid 72dc8ab
refactor
maciejmaciejko-gid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am wondering what happens with OIDC, the short lived bearer token may need to be regenerated if the retries occur after the token has expired). Is this regeneration check done for the retries?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The request is created only once, but OIDC processor (responsible for setting bearer token in request) is called on every retry.