Skip to content

Commit b7f6287

Browse files
committed
Checking CI runs
1 parent a2a165d commit b7f6287

File tree

1 file changed

+1
-1
lines changed
  • instrumentation/opentelemetry-instrumentation-asgi/src/opentelemetry/instrumentation/asgi

1 file changed

+1
-1
lines changed

instrumentation/opentelemetry-instrumentation-asgi/src/opentelemetry/instrumentation/asgi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ def get_host_port_url_tuple(scope):
451451
host_value = host_header[0]
452452
# Ensure host_value is a string, not bytes
453453
if isinstance(host_value, bytes):
454-
host_value = _decode_header_item(host_value)
454+
host_value = _decode_header_item(host_value) # use exisiting function
455455

456456
url_host = host_value
457457

0 commit comments

Comments
 (0)