Return aws error early if not: workgroup not found #70
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes the source of many hours of debugging by not hiding the original error and instead returning it.
Right now, even if your workgroup already exists, this driver will try to create it.
For example, if your aws permissions are not correct, the attempt to get the workgroup will fail. The driver will then attempt to create the workgroup, and return related to creating the workgroup if that fails too.
Instead, we should only create the workgroup if it does not exist. Right now, on the v1 aws driver, that is a 400 code error with the text
WorkGroup is not found.
Reproduce-able setup:
Just make sure the workgroup does already exist, but your aws permissions are incorrect.