Skip to content

Commit

Permalink
Fix breadcrumb level for HTTP client breadcrumbs in POTel (#4104)
Browse files Browse the repository at this point in the history
Oversight from #4090 --
forgot to update the breadcrumb level created by the async httpx client

Makes all Network tests green.
  • Loading branch information
sentrivana authored Feb 27, 2025
1 parent ec91078 commit 29d0819
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sentry_sdk/integrations/httpx.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ async def send(self, request, **kwargs):
type="http",
category="httplib",
data=data,
level=http_client_status_to_breadcrumb_level(rv.status_code),
)

return rv
Expand Down

0 comments on commit 29d0819

Please sign in to comment.