browser: Avoid logging BucketNotEmpty error (#8110)

This commit is contained in:
poornas 2019-08-21 13:01:46 -07:00 committed by Harshavardhana
parent de736f2864
commit 2e19619e79
2 changed files with 3 additions and 1 deletions

View File

@ -1972,6 +1972,8 @@ func toWebAPIError(ctx context.Context, err error) APIError {
return getAPIError(ErrStorageFull) return getAPIError(ErrStorageFull)
case BucketNotFound: case BucketNotFound:
return getAPIError(ErrNoSuchBucket) return getAPIError(ErrNoSuchBucket)
case BucketNotEmpty:
return getAPIError(ErrBucketNotEmpty)
case BucketExists: case BucketExists:
return getAPIError(ErrBucketAlreadyOwnedByYou) return getAPIError(ErrBucketAlreadyOwnedByYou)
case BucketNameInvalid: case BucketNameInvalid:

View File

@ -338,7 +338,7 @@ func testDeleteBucketWebHandler(obj ObjectLayer, instanceType string, t TestErrH
{"minio", false, "false token", "Authentication failed"}, {"minio", false, "false token", "Authentication failed"},
{"minio", false, token, "The specified bucket is not valid"}, {"minio", false, token, "The specified bucket is not valid"},
{bucketName, false, token, ""}, {bucketName, false, token, ""},
{bucketName, true, token, "Bucket not empty"}, {bucketName, true, token, "The bucket you tried to delete is not empty"},
{bucketName, false, "", "JWT token missing"}, {bucketName, false, "", "JWT token missing"},
} }