-
Notifications
You must be signed in to change notification settings - Fork 76
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
Hedged-request: Handling in HTTP Client Configuration #119
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Vanshikav123 <[email protected]>
Signed-off-by: Vanshikav123 <[email protected]>
Signed-off-by: Vanshikav123 <[email protected]>
Signed-off-by: Vanshikav123 <[email protected]>
Signed-off-by: Vanshikav123 <[email protected]>
case string(AZURE): | ||
bucket, err = azure.NewBucket(logger, config, component) | ||
bucket, err = azure.NewBucket(logger, config, component, rt) | ||
case string(SWIFT): | ||
bucket, err = swift.NewContainer(logger, config) |
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.
It's not supported by all providers? 🤔 I checked a few like swift/bos and I don't see a reason why this is not implemented there.
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.
It's not supported by all providers? 🤔 I checked a few like swift/bos and I don't see a reason why this is not implemented there.
i added this parameter to the providers which had http.Client , swift does not uses NewBucket but bos/obs can have this parameter i think also i see that obs makes new ObsClient and bos uses NewClient which makes a BOS client...wdyt?
Signed-off-by: Vanshikav123 <[email protected]>
Signed-off-by: Vanshikav123 <[email protected]>
Changes
Initiation change for
thanos-io/thanos#6712
Implemented changes requested for #118
Verification