-
Notifications
You must be signed in to change notification settings - Fork 0
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
[DO NOT APPROVE] New deploys #670
base: temporal
Are you sure you want to change the base?
Conversation
Git block remapper script
…mensatech Potential fix for session breaking deployments for Mensatech
…ambda Add additional error category for wrapped Lambda functions
api/resources/aws_lambda.py
Outdated
sorted(self.lambda_config.libraries), | ||
), encoding='UTF-8') | ||
|
||
self._s3_path = sha256(uid_input).hexdigest() + ".zip" |
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 reason you assign this here is because it is attempting to be cached, I believe?
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.
Yes
RUNTIME_TO_BUILDER = {b.RUNTIME_PRETTY_NAME: b for b in BUILDERS} | ||
|
||
|
||
class AWSLambda(Resource): |
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.
I like that all modifications of self
are done in the properties here, and only really as a performance optimization. That's nice.
How did you get all of the changes that I had made the other week in here? |
No description provided.