Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/instana/instrumentation/httpx.py
Comment thread
GSVarsha marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def handle_request_with_instana(
_set_response_span_attributes(span, response)
except Exception as e:
span.record_exception(e)
raise
else:
return response

Expand Down Expand Up @@ -118,6 +119,7 @@ async def handle_async_request_with_instana(
_set_response_span_attributes(span, response)
except Exception as e:
span.record_exception(e)
raise
else:
return response

Expand Down
Loading