s3: print out time in UTC format

fix https://github.com/chrislusf/seaweedfs/issues/1297
This commit is contained in:
Chris Lu
2020-04-29 21:35:24 -07:00
parent e93588ec78
commit a25a8d8822
2 changed files with 2 additions and 2 deletions

View File

@@ -207,7 +207,7 @@ func (s3a *S3ApiServer) listObjectParts(input *s3.ListPartsInput) (output *ListP
} }
output.Parts = append(output.Parts, &s3.Part{ output.Parts = append(output.Parts, &s3.Part{
PartNumber: aws.Int64(int64(partNumber)), PartNumber: aws.Int64(int64(partNumber)),
LastModified: aws.Time(time.Unix(entry.Attributes.Mtime, 0)), LastModified: aws.Time(time.Unix(entry.Attributes.Mtime, 0).UTC()),
Size: aws.Int64(int64(filer2.TotalSize(entry.Chunks))), Size: aws.Int64(int64(filer2.TotalSize(entry.Chunks))),
ETag: aws.String("\"" + filer2.ETag(entry) + "\""), ETag: aws.String("\"" + filer2.ETag(entry) + "\""),
}) })

View File

@@ -38,7 +38,7 @@ func (s3a *S3ApiServer) ListBucketsHandler(w http.ResponseWriter, r *http.Reques
if entry.IsDirectory { if entry.IsDirectory {
buckets = append(buckets, &s3.Bucket{ buckets = append(buckets, &s3.Bucket{
Name: aws.String(entry.Name), Name: aws.String(entry.Name),
CreationDate: aws.Time(time.Unix(entry.Attributes.Crtime, 0)), CreationDate: aws.Time(time.Unix(entry.Attributes.Crtime, 0).UTC()),
}) })
} }
} }