Skip to content

Commit ffa529d

Browse files
committed
Merge branch 'fix-fastapi-url' of https://github.com/rads-1996/opentelemetry-python-contrib into fix-fastapi-url
2 parents 912f735 + 4886099 commit ffa529d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
([#3507](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3507))
3232
- Fix documentation order of sections and headers for Django, Flask, MySQL, mysqlclient, psycopg, psycopg2, pymysql, sqlalchemy instrumentations.
3333
([#3719](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3719))
34+
- `opentelemetry-instrumentation-asgi` Fixed issue where FastAPI reports IP instead of URL.
35+
([#3670](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3670))
3436

3537
### Added
3638

@@ -48,6 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4850
## Version 1.36.0/0.57b0 (2025-07-29)
4951

5052
### Fixed
53+
5154
- `opentelemetry-instrumentation`: Fix dependency conflict detection when instrumented packages are not installed by moving check back to before instrumentors are loaded. Add "instruments-any" feature for instrumentations that target multiple packages.
5255
([#3610](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3610))
5356
- infra(ci): Fix git pull failures in core contrib test

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ def get_host_port_url_tuple(scope):
453453
if isinstance(host_value, bytes):
454454
host_value = _decode_header_item(
455455
host_value
456-
) # use existing function
456+
)
457457

458458
url_host = host_value
459459

0 commit comments

Comments
 (0)