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

@@ -126,10 +126,9 @@ func (g *B2) NewGatewayLayer(creds auth.Credentials) (minio.ObjectLayer, error)
}, nil
}
// Production - Ready for production use?
// Production - Ready for production use.
func (g *B2) Production() bool {
// Not ready for production use just yet.
return false
return true
}
// b2Object implements gateway for Minio and BackBlaze B2 compatible object storage servers.