File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/export Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
([ #3751 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3751 ) )
12
12
- bump mypy to 0.982
13
13
([ #3776 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3776 ) )
14
+ - Fix ValueError message for PeriodicExportingMetricsReader
15
+ ([ #3769 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3769 ) )
14
16
15
17
## Version 1.23.0/0.44b0 (2024-02-23)
16
18
Original file line number Diff line number Diff line change @@ -496,7 +496,7 @@ def __init__(
496
496
elif self ._export_interval_millis <= 0 :
497
497
raise ValueError (
498
498
f"interval value { self ._export_interval_millis } is invalid \
499
- and needs to be larger than zero and lower than infinity ."
499
+ and needs to be larger than zero."
500
500
)
501
501
502
502
def _at_fork_reinit (self ):
You can’t perform that action at this time.
0 commit comments