You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
a7624f50f7
Fix `ErrorType` detection to work through wrapped error chains. `errorType` previously only checked whether the top-level error value implemented `ErrorType() string`. In common Go usage, errors are often wrapped, so this could miss `ErrorType` implementations behind wrappers.