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
If we attempt to upgrade to the latest OTEL and OTEL contrib, we're hitting the error cannot merge resource due to conflicting Schema URL attempting to create a resource detector on startup. This appears to be due to the fact that the OTEL libraries have updated to semconv v1.7.0 while several of the OTEL-contrib packages are still on semconv v1.4.0.
The text was updated successfully, but these errors were encountered:
* Call otel.Handle with non-nil errors
That's what normally happens in other call sites. Those two didn't
check it, but passed the "error" to Handle. The default, delegating
implementation of ErrorHandler was printing the error unconditionally,
which resulted in pointless lines like `2020/12/07 19:51:28 <nil>` in
demos, for example.
* Add tests
Co-authored-by: Tyler Yahn <[email protected]>
If we attempt to upgrade to the latest OTEL and OTEL contrib, we're hitting the error
cannot merge resource due to conflicting Schema URL
attempting to create a resource detector on startup. This appears to be due to the fact that the OTEL libraries have updated to semconv v1.7.0 while several of the OTEL-contrib packages are still on semconv v1.4.0.The text was updated successfully, but these errors were encountered: