Skip to content

Commit 29d0819

Browse files
authored
Fix breadcrumb level for HTTP client breadcrumbs in POTel (#4104)
Oversight from #4090 -- forgot to update the breadcrumb level created by the async httpx client Makes all Network tests green.
1 parent ec91078 commit 29d0819

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sentry_sdk/integrations/httpx.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ async def send(self, request, **kwargs):
174174
type="http",
175175
category="httplib",
176176
data=data,
177+
level=http_client_status_to_breadcrumb_level(rv.status_code),
177178
)
178179

179180
return rv

0 commit comments

Comments
 (0)