-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
refactor sqs deveoper api into its own module #13202
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
Conversation
Test Results (amd64) - Integration, Bootstrap 5 files 5 suites 2h 6m 13s ⏱️ Results for commit 3f62692. |
LocalStack Community integration with Pro 2 files ± 0 2 suites ±0 1h 35m 40s ⏱️ - 24m 7s Results for commit 3f62692. ± Comparison against base commit 1d26fe7. This pull request removes 995 and adds 47 tests. Note that renamed tests count towards both. |
baermat
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Motivation
There were two long-standing issues in our internal issue tracker to:
provider.pyfor better readability and maintainabilityThis PR achieves those two things.
The PR looks like a lot of changes, but really all I did was
SqsDeveloperEndpointsfromprovider.pyintodeveloper_api.py(I also renamed it toSqsDeveloperApi, which I think is more fitting)provider.pyintoutils.pyormodels.py- otherwise we'd have a circular referencecreate_message_attribute_hashthat moved intoutils.pyThis also triggered a minor import change in lambda, which uses SQS internals.
Changes