summaryrefslogtreecommitdiff
path: root/vendor/github.com
diff options
context:
space:
mode:
authorRenovate Bot <bot@renovateapp.com>2019-11-02 01:47:04 +0000
committerRenovate Bot <bot@renovateapp.com>2019-11-02 01:47:04 +0000
commita716b58ec2e85ca6583b50eee1e87a5bded7d2e2 (patch)
tree4bc9ba236303455eb674eaea034488f37547ca8f /vendor/github.com
parentff8cccf3044b200262acbd15fbb0b3cdee09e12e (diff)
Update github.com/johannesboyne/gofakes3 commit hash to e238f04
Diffstat (limited to 'vendor/github.com')
-rw-r--r--vendor/github.com/johannesboyne/gofakes3/error.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/johannesboyne/gofakes3/error.go b/vendor/github.com/johannesboyne/gofakes3/error.go
index 9d8eead4..d0a71f77 100644
--- a/vendor/github.com/johannesboyne/gofakes3/error.go
+++ b/vendor/github.com/johannesboyne/gofakes3/error.go
@@ -214,6 +214,8 @@ func (e InternalErrorCode) Error() string { return string(ErrInternal) }
// know!
func (e ErrorCode) Message() string {
switch e {
+ case ErrInvalidBucketName:
+ return `Bucket name must match the regex "^[a-zA-Z0-9.\-_]{1,255}$"`
case ErrNoSuchBucket:
return "The specified bucket does not exist"
case ErrRequestTimeTooSkewed: