forked from TrueCloudLab/frostfs-s3-gw
[#133] Fix response time format
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
cc0e2e7636
commit
bdc7f9acba
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ func writeHeaders(h http.Header, info *layer.ObjectInfo) {
|
|||
if len(info.ContentType) > 0 {
|
||||
h.Set(api.ContentType, info.ContentType)
|
||||
}
|
||||
h.Set(api.LastModified, info.Created.Format(time.RFC3339))
|
||||
h.Set(api.LastModified, info.Created.UTC().Format(http.TimeFormat))
|
||||
h.Set(api.ContentLength, strconv.FormatInt(info.Size, 10))
|
||||
h.Set(api.ETag, info.HashSum)
|
||||
|
||||
|
|
Loading…
Reference in a new issue