gateway-azure: Return right error when Part size is > 100MB (#4652)

This commit is contained in:
Krishna Srinivas
2017-07-12 16:42:14 -07:00
committed by Dee Koder
parent c3dd7c1f6c
commit ce7c9c651d
3 changed files with 11 additions and 0 deletions

View File

@@ -725,6 +725,8 @@ func toAPIErrorCode(err error) (apiErr APIErrorCode) {
apiErr = ErrNotImplemented
case PolicyNotFound:
apiErr = ErrNoSuchBucketPolicy
case PartTooBig:
apiErr = ErrEntityTooLarge
default:
apiErr = ErrInternalError
}