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
isRetriableError() is broken in master which causes retryable errors to abort. Basically this function needs to look something like:
isRetriableError()
func isRetriableError(err error) bool { var apiErr smithy.APIError if !errors.As(err, &apiErr) { return false } switch apiErr.(type) { case *types.ExpiredIteratorException: return true case *types.ProvisionedThroughputExceededException: return true default: return false } }
I can submit a PR but it's not entirely clear whether this project is dead or not, so I'll wait for signs of life before investing the effort. :)
The text was updated successfully, but these errors were encountered:
I guess this is fixed now in #159
Sorry, something went wrong.
No branches or pull requests
isRetriableError()
is broken in master which causes retryable errors to abort. Basically this function needs to look something like:I can submit a PR but it's not entirely clear whether this project is dead or not, so I'll wait for signs of life before investing the effort. :)
The text was updated successfully, but these errors were encountered: