1
0
mirror of https://github.com/minio/minio.git synced 2025-03-31 17:53:43 -04:00

remove "expires" header from presign v2 as metadata ()

fixes 
This commit is contained in:
Harshavardhana 2021-11-22 16:07:23 -08:00 committed by GitHub
parent d0515031c7
commit 26c457860b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -181,6 +181,8 @@ func doesPresignV2SignatureMatch(r *http.Request) APIErrorCode {
return ErrSignatureDoesNotMatch
}
r.Form.Del(xhttp.Expires)
return ErrNone
}