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
SimpleSpanProcessor ensures that it is not possible to concurrently call Exporter::Shutdown().
SimpleSpanProcessor ensures that it is not possible to concurrently call Exporter::Export()
But it is still possible to call Exporter::Shutdown() and Exporter::Export() concurrently, and if that happens, is_shutdown/isShutdown variable defined in different exporters need to be protected.
opentelemetry::common::SpinLockMutex is lock-free, and one option could be to protect is_shutdown with that.
The text was updated successfully, but these errors were encountered:
As of now,
opentelemetry::common::SpinLockMutex
is lock-free, and one option could be to protect is_shutdown with that.The text was updated successfully, but these errors were encountered: