mirror of
https://github.com/minio/minio.git
synced 2025-11-10 05:59:43 -05:00
gateway-azure: Return right error when Part size is > 100MB (#4652)
This commit is contained in:
committed by
Dee Koder
parent
c3dd7c1f6c
commit
ce7c9c651d
@@ -343,6 +343,13 @@ func (e PartTooSmall) Error() string {
|
||||
return fmt.Sprintf("Part size for %d should be atleast 5MB", e.PartNumber)
|
||||
}
|
||||
|
||||
// PartTooBig returned if size of part is bigger than the allowed limit.
|
||||
type PartTooBig struct{}
|
||||
|
||||
func (e PartTooBig) Error() string {
|
||||
return "Part size bigger than the allowed limit"
|
||||
}
|
||||
|
||||
// NotImplemented If a feature is not implemented
|
||||
type NotImplemented struct{}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user