You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SDK defines data_points as (at most) an Iterable, not an Iterator. The related PR will convert them to a Sequence, which matches a consumer's type definition and will avoid holding a lock in an unrealized generator.
This is related to
The SDK defines data_points as (at most) an
Iterable
, not anIterator
. The related PR will convert them to aSequence
, which matches a consumer's type definition and will avoid holding a lock in an unrealized generator.Steps to reproduce
See https://github.com/open-telemetry/opentelemetry-python/actions/runs/3482444373/jobs/5842457813#step:7:8461
What is the expected behavior?
Tests should pass
What is the actual behavior?
Tests fail due to
next
call on unsupported type.The text was updated successfully, but these errors were encountered: