-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
s3: Added --s3-disable-http2
to disable http/2
#4674
Conversation
@@ -1381,6 +1393,19 @@ func (o *Object) split() (bucket, bucketPath string) { | |||
return o.fs.split(o.remote) | |||
} | |||
|
|||
// getClient makes an http client according to the options | |||
func getClient(opt *Options) *http.Client { | |||
// TODO: Do we need cookies too? |
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.
Cookies?
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.
@ncw Do we need the cookies too btw? I noticed that even for Google drive the cookie jar is not set so am not sure whether we need that or not?
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 don't think we need cookies.
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.
Thanks for doing this - see inline comments :-)
func getClient(opt *Options) *http.Client { | ||
// TODO: Do we need cookies too? | ||
t := fshttp.NewTransportCustom(fs.Config, func(t *http.Transport) { | ||
if opt.DisableHTTP2 { |
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.
Aside: It occurs to me that this would be easy to make a global option... That doesn't disable it per backend but it might be useful for debugging.
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.
Yep, had the same thought. I also wanted to add experimental support for quic (using quic-go) in the fshttp client so will probably do both of them together when I get around to it.
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.
Great! That would be very useful.
Signed-off-by: Anagh Kumar Baranwal <[email protected]>
404e1fe
to
4daf29d
Compare
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.
This looks great now! I'll merge it :-)
Thank you
What is the purpose of this change?
Added flag to disable HTTP/2 on S3 backends. Fixes #4673
Was the change discussed in an issue or in the forum before?
#4673
Checklist