gateway/gcs: Change in multipart backend format (#4455)

This commit is contained in:
Krishna Srinivas
2017-06-17 16:00:41 -07:00
committed by Harshavardhana
parent f99f218999
commit 3928c1e14c
5 changed files with 218 additions and 287 deletions

View File

@@ -27,6 +27,10 @@ var errUnexpected = errors.New("Unexpected error, please report this issue at ht
// errCorruptedFormat - corrupted backend format.
var errCorruptedFormat = errors.New("corrupted backend format, please join https://slack.minio.io for assistance")
// errFormatNotSupported - returned when older minio tries to parse metadata
// created by newer minio.
var errFormatNotSupported = errors.New("format not supported")
// errUnformattedDisk - unformatted disk found.
var errUnformattedDisk = errors.New("unformatted disk found")