Skip to content

Commit 9795014

Browse files
committed
change httpx query saving
1 parent 35f8e9b commit 9795014

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/httpx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def httpx_processor(
193193

194194
query = request_info.get("data")
195195
if request.method == "GET":
196-
query = dict(parse_qsl(request.url.query.decode()))
196+
query = dict(parse_qsl(parsed_url.query))
197197

198198
if query:
199199
operation_name = _get_graphql_operation_name(query)

0 commit comments

Comments
 (0)