Skip to content

Commit

Permalink
gateway-gcs: double quotes should be striped from ETag (minio#4590)
Browse files Browse the repository at this point in the history
  • Loading branch information
Krishna Srinivas authored and harshavardhana committed Jun 23, 2017
1 parent a3b0853 commit ff036c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/gateway-s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit ff036c1

Please sign in to comment.