Enable s3,gcs,manta,oss,b2 gateways as production ready (#5795)

This commit is contained in:
Harshavardhana
2018-04-09 16:33:48 -07:00
committed by GitHub
parent 1d31ad499f
commit 41c31d10ca
5 changed files with 10 additions and 11 deletions

View File

@@ -147,9 +147,9 @@ func (g *S3) NewGatewayLayer(creds auth.Credentials) (minio.ObjectLayer, error)
}, nil
}
// Production - s3 gateway is not production ready.
// Production - s3 gateway is production ready.
func (g *S3) Production() bool {
return false
return true
}
// s3Objects implements gateway for Minio and S3 compatible object storage servers.