We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please fill out the sections below to help us address your issue.
1.8.39 (master)
go version
go version go1.8 windows/amd64
In https://github.com/aws/aws-sdk-go/blob/master/aws/request/validation.go
func NewErrParamMinLen(field string, min int) *ErrParamMinLen { return &ErrParamMinLen{ errInvalidParam: errInvalidParam{ code: ParamMinValueErrCode, field: field, msg: fmt.Sprintf("minimum field size of %v", min), }, min: min, } }
The intended value for the code field probably is ParamMinLenErrCode, not ParamMinValueErrCode.
—
The text was updated successfully, but these errors were encountered:
Thanks identifying this bug @deedweird. I'll review this but I think you are correct the error code here should of been MinLen not MinValue.
Sorry, something went wrong.
aff9ab6
The change looked good @deedweird. Let us know if you run into any additional issues, have questions, or feedback.
jasdel
No branches or pull requests
Please fill out the sections below to help us address your issue.
Version of AWS SDK for Go?
1.8.39 (master)
Version of Go (
go version
)?go version go1.8 windows/amd64
What issue did you see?
In https://github.com/aws/aws-sdk-go/blob/master/aws/request/validation.go
The intended value for the code field probably is ParamMinLenErrCode, not ParamMinValueErrCode.
Steps to reproduce
—
The text was updated successfully, but these errors were encountered: