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
SentrySpanProcessor stores all open span in self.otel_span_map dict. This leads to a memory leak if otel span is deleted without closing. E.g. due to a bug: open-telemetry/opentelemetry-python-contrib#2149
Expected Result
Sentry span should be deleted after otel span is deleted by GC.
Actual Result
Sentry spans are stored in self.otel_span_map forever.