You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am the maintainer of the sentry-sdk for python. We have an integration with AWS Lambda that allows users to capture unhandled errors during AWS Lambda init or invocation.
This breaks our integration, because we monkey patch post_init_error and use sys.exc_info() to access the currently handled exception.
With this change linked above the call to post_init_error has moved outside the exception handling block, so we no longer have access to the currently handled exception.
Is there any chance, we can move the call to post_init_error again under the exception handling block?
AWS changed their Lambda run times, so we no longer have access to the current exception during the init phase of the Lambda function.
I am trying to fix this upstream: aws/aws-lambda-python-runtime-interface-client#172
This PR adds a fall back to the errror json object provided by AWS. This has way less data than a real exception in it, but it is better than nothing.
Fixes#3464
arjennienhuis
pushed a commit
to arjennienhuis/sentry-python
that referenced
this issue
Sep 30, 2024
AWS changed their Lambda run times, so we no longer have access to the current exception during the init phase of the Lambda function.
I am trying to fix this upstream: aws/aws-lambda-python-runtime-interface-client#172
This PR adds a fall back to the errror json object provided by AWS. This has way less data than a real exception in it, but it is better than nothing.
Fixesgetsentry#3464
Hello!
I am the maintainer of the sentry-sdk for python. We have an integration with AWS Lambda that allows users to capture unhandled errors during AWS Lambda init or invocation.
There was a change recently: https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/163/files#diff-4513a869520b19ae4e30058106d7c3b5ddbb79216b5e9bd922d83389fb86c603R481-R483
This breaks our integration, because we monkey patch
post_init_error
and usesys.exc_info()
to access the currently handled exception.With this change linked above the call to
post_init_error
has moved outside the exception handling block, so we no longer have access to the currently handled exception.Is there any chance, we can move the call to
post_init_error
again under the exception handling block?I have also a PR for this: #171
The text was updated successfully, but these errors were encountered: