-
Notifications
You must be signed in to change notification settings - Fork 560
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
Updating minio-go library #2506
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2506 +/- ##
==========================================
- Coverage 10.66% 10.65% -0.01%
==========================================
Files 106 106
Lines 10672 10672
==========================================
- Hits 1138 1137 -1
- Misses 9384 9385 +1
Partials 150 150
Continue to review full report at Codecov.
|
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.
LGTM
if err != nil { | ||
return err | ||
} | ||
if resp != nil { |
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 could be:
if resp != nil && resp.StatusCode != http.StatusOK{
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.
all of these should be addressed in minio-go @ebozduman open an issue there.
@@ -223,6 +223,7 @@ var supportedHeaders = []string{ | |||
"content-disposition", | |||
"content-language", | |||
"x-amz-website-redirect-location", | |||
"expires", |
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.
How is this change related to this PR?
This PR includes latest minio-go fixes.