Cleanup stale multipart uploads older than 3 days (#7424)

Fixes #6627
master
Harshavardhana 6 years ago committed by kannappanr
parent 7154b8a568
commit 0250f7de67
  1. 2
      cmd/globals.go

@ -78,7 +78,7 @@ const (
globalMaxSkewTime = 15 * time.Minute // 15 minutes skew allowed.
// GlobalMultipartExpiry - Expiry duration after which the multipart uploads are deemed stale.
GlobalMultipartExpiry = time.Hour * 24 * 14 // 2 weeks.
GlobalMultipartExpiry = time.Hour * 24 * 3 // 3 days.
// GlobalMultipartCleanupInterval - Cleanup interval when the stale multipart cleanup is initiated.
GlobalMultipartCleanupInterval = time.Hour * 24 // 24 hrs.

Loading…
Cancel
Save