mirror of
https://github.com/minio/minio.git
synced 2025-11-10 05:59:43 -05:00
Fix StorageClass field in ListObject/ListObjectV2 response (#5766)
Fixes: #5754
This commit is contained in:
committed by
kannappanr
parent
30ab71c9d9
commit
9eb94fe8c8
@@ -339,7 +339,7 @@ func generateListObjectsV1Response(bucket, prefix, marker, delimiter string, max
|
||||
content.ETag = "\"" + object.ETag + "\""
|
||||
}
|
||||
content.Size = object.Size
|
||||
content.StorageClass = globalMinioDefaultStorageClass
|
||||
content.StorageClass = object.StorageClass
|
||||
content.Owner = owner
|
||||
contents = append(contents, content)
|
||||
}
|
||||
@@ -385,7 +385,7 @@ func generateListObjectsV2Response(bucket, prefix, token, nextToken, startAfter,
|
||||
content.ETag = "\"" + object.ETag + "\""
|
||||
}
|
||||
content.Size = object.Size
|
||||
content.StorageClass = globalMinioDefaultStorageClass
|
||||
content.StorageClass = object.StorageClass
|
||||
content.Owner = owner
|
||||
contents = append(contents, content)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user