-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
Wrap more error responses #70
Comments
@dimaqq, do you have a list of errors that we should wrap here? I can help with this one. |
Awesome, João! This particular error we've observed in production, and a bunch are already handled.
Official list is here: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Programming.Errors.html |
Sure! I will check both of this resources and put my fingers to work. Also, how small are the PRs here? I should push one by PR, one PR with each error in a commit, pack them all? |
all in one is just fine :) |
For #70 `ResourceInUseException` is returned when trying to create a table that already exists... (maybe the assumption is that table is being used right now). ran into this with `dynalite`.
For #70 `ResourceInUseException` is returned when trying to create a table that already exists... (maybe the assumption is that table is being used right now). ran into this with `dynalite`.
For example,
ResourceInUseException
(e.g. trying to create a table that already exists)Today the error is
aiodynamo.errors.UnknownError: b'{"__type":"com.amazonaws.dynamodb.v20120810#ResourceInUseException","message":""}'
The text was updated successfully, but these errors were encountered: