Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#5120](https://github.com/open-telemetry/opentelemetry-python/pull/5120))
- Add WeaverLiveCheck test util
([#5088](https://github.com/open-telemetry/opentelemetry-python/pull/5088))
- Fix incorrect type annotation on `detectors` parameter of `get_aggregated_resources`
([#5135](https://github.com/open-telemetry/opentelemetry-python/pull/5135))

## Version 1.41.0/0.62b0 (2026-04-09)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
import socket
import sys
import typing
from collections.abc import Sequence
from json import dumps
from os import environ
from types import ModuleType
Expand Down Expand Up @@ -517,7 +518,7 @@ def detect(self) -> "Resource":


def get_aggregated_resources(
detectors: typing.List["ResourceDetector"],
detectors: Sequence["ResourceDetector"],
initial_resource: typing.Optional[Resource] = None,
timeout: int = 5,
) -> "Resource":
Expand Down
Loading