-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add AWS Labmda support INTER-161 #32
Conversation
now it should work in AWS Lambda for Python > 3.8 #31
☂️ Python Coverage
Overall Coverage
New Files
Modified Files
|
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.
The fix make sense to me and the SDK works when testing locally, good enough for me 👍
🎉 This PR is included in version 2.5.0-dev.1 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 2.5.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
In AWS Lambda environment there is no
multiprocessing.pool
for Python > 3.7.So in this PR I added
DummyPool
to make async mode work like sync, but at least it works.For a real async mode, the customer can provide their own
ThreadPool
instance.Bonus:
python-dotenv
to the requirements templateurllib3