Skip to content
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

Merged
merged 1 commit into from
Oct 13, 2020

Conversation

darthShadow
Copy link
Member

@darthShadow darthShadow commented Oct 12, 2020

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

  • I have read the contribution guidelines.
  • I have added tests for all changes in this PR if appropriate.
  • I have added documentation for the changes if appropriate.
  • All commit messages are in house style.
  • I'm done, this Pull Request is ready for review :-)

@@ -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?
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cookies?

Copy link
Member Author

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?

Copy link
Member

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.

Copy link
Member

@ncw ncw left a 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 {
Copy link
Member

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.

Copy link
Member Author

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.

Copy link
Member

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.

Copy link
Member

@ncw ncw left a 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

@ncw ncw merged commit fc5b14b into rclone:master Oct 13, 2020
@darthShadow darthShadow deleted the fix-s3-http2 branch October 13, 2020 16:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

PROTOCOL_ERROR on S3
2 participants