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.
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
fix(lambda): function version ignores layer version changes #20150
fix(lambda): function version ignores layer version changes #20150
Changes from 8 commits
6061750
ca89e1a
6562425
5bb2c19
c5af8f5
97f7f8c
144b38d
2bac2c9
5d45ae6
78fd23b
56db632
a050989
68d06b3
3f62785
4e6b561
0068a22
8df2619
d850443
404fcd3
594a590
dc4a0d2
757ef2d
a0a617b
5967433
3404aa3
47f7115
3be936f
72a3197
de03832
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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 alternative to making this public is to send the layers directly into the
calculateFunctionHash()
like:calculateFunctionHash(fn, fn.layers)
. That seems awkward to me so I chose to make this public.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.
calculateFunctionHash
is a private function, so I don't really care about its signature. I care more about making this public, which this change does... so I'd rather you didn't.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.
Marked @internal instead. I need this to be publicly accessible for the aspect as well, and if my understanding of
@internal
is correct, this makes the most sense.