Bump to sdk aws go v2 at release v0.26.0...

Bump dependancies
Refactor / Fix aws to work with sdk-aws-go-v2 at release v0.26.0...
This commit is contained in:
Nicolas JUHEL
2020-09-30 13:04:47 +02:00
parent 47dc7f34ae
commit 94f90d7e22
38 changed files with 706 additions and 749 deletions

View File

@@ -41,6 +41,7 @@ const (
ErrorS3AWSNewVers
ErrorS3AWSNotFound
ErrorS3AWSDownloadError
ErrorS3AWSIOReaderError
)
var (
@@ -85,6 +86,8 @@ func getMessage(code errors.CodeError) (message string) {
return "requested version is not found"
case ErrorS3AWSDownloadError:
return "download object requested occurs error"
case ErrorS3AWSIOReaderError:
return "return io reader is empty"
}
return ""