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.
1 parent d4ad8f5 commit 5f1845dCopy full SHA for 5f1845d
instrumentation/opentelemetry-instrumentation-asgi/src/opentelemetry/instrumentation/asgi/__init__.py
@@ -160,7 +160,7 @@ def collect_request_attributes(scope):
160
if query_string and http_url:
161
if isinstance(query_string, bytes):
162
query_string = query_string.decode("utf8")
163
- http_url = http_url + ("?" + urllib.parse.unquote(query_string))
+ http_url += "?" + urllib.parse.unquote(query_string)
164
165
result = {
166
SpanAttributes.HTTP_SCHEME: scope.get("scheme"),
0 commit comments