s3: skip SetModTime for objects > 5GB - fixes #534
This commit is contained in:
parent
e0aa4bb492
commit
a67c7461ee
1 changed files with 9 additions and 3 deletions
6
s3/s3.go
6
s3/s3.go
|
@ -153,6 +153,7 @@ const (
|
|||
metaMtime = "Mtime" // the meta key to store mtime in - eg X-Amz-Meta-Mtime
|
||||
listChunkSize = 1024 // number of items to read at once
|
||||
maxRetries = 10 // number of retries to make of operations
|
||||
maxSizeForCopy = 5 * 1024 * 1024 * 1024 // The maximum size of object we can COPY
|
||||
)
|
||||
|
||||
// Fs represents a remote s3 server
|
||||
|
@ -751,6 +752,11 @@ func (o *Object) SetModTime(modTime time.Time) error {
|
|||
}
|
||||
o.meta[metaMtime] = aws.String(swift.TimeToFloatString(modTime))
|
||||
|
||||
if o.bytes >= maxSizeForCopy {
|
||||
fs.Debug(o, "SetModTime is unsupported for objects bigger than %v bytes", fs.SizeSuffix(maxSizeForCopy))
|
||||
return nil
|
||||
}
|
||||
|
||||
// Guess the content type
|
||||
contentType := fs.MimeType(o)
|
||||
|
||||
|
|
Loading…
Reference in a new issue