gateway-gcs: double quotes should be striped from ETag (#4590)

master
Krishna Srinivas 7 years ago committed by Harshavardhana
parent a3b085300d
commit ff036c171f
  1. 2
      cmd/gateway-s3.go

@ -311,7 +311,7 @@ func fromMinioClientObjectInfo(bucket string, oi minio.ObjectInfo) ObjectInfo {
Name: oi.Key,
ModTime: oi.LastModified,
Size: oi.Size,
ETag: oi.ETag,
ETag: canonicalizeETag(oi.ETag),
UserDefined: userDefined,
ContentType: oi.ContentType,
ContentEncoding: oi.Metadata.Get("Content-Encoding"),

Loading…
Cancel
Save