-
Notifications
You must be signed in to change notification settings - Fork 647
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
Avoid setting server encryption headers with x-amz-meta #859
Conversation
7dc0497
to
a940d1b
Compare
utils.go
Outdated
"x-amz-server-side-encryption-customer-key-MD5", | ||
} | ||
|
||
// isCSEHeader returns true if header is a client side encryption header. |
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.
Looks like a Typo. Needs to be
isSSEHeader returns true if header is a server side encryption header.
a940d1b
to
2ea3f42
Compare
utils.go
Outdated
@@ -255,3 +256,24 @@ func isCSEHeader(headerKey string) bool { | |||
} | |||
return false | |||
} | |||
|
|||
// sseHeaders is list of client side encryption headers |
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.
Comment needs to be
sseHeaders is list of server side encryption headers
2ea3f42
to
aea6785
Compare
aea6785
to
5dd6ffd
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.
Verified. LGTM
No description provided.