We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Right now, calls to end_segment will break when context_missing='LOG_ERROR', should that happen?
context_missing='LOG_ERROR'
>>> xray_recorder.end_segment() cannot find the current segment/subsegment, please make sure you have a segment open No segment to end cannot find the current segment/subsegment, please make sure you have a segment open Traceback (most recent call last): ... File ".../aws-xray-sdk/aws_xray_sdk/core/recorder.py", line 229, in end_segment if self.current_segment().ready_to_send(): AttributeError: 'NoneType' object has no attribute 'ready_to_send'
The text was updated successfully, but these errors were encountered:
Thank you for reporting this issue. This is a bug and we will work on a fix soon.
Sorry, something went wrong.
The issue is fixed in 2.2.0 https://pypi.org/project/aws-xray-sdk/. Closing.
No branches or pull requests
Right now, calls to end_segment will break when
context_missing='LOG_ERROR'
, should that happen?The text was updated successfully, but these errors were encountered: