The SimpleSpanProcessor is not thread-safe: it is not safe to call the Export method on the exporter concurrently, and the SimpleSpanProcessor ends up calling Export from different threads without locking.
The SimpleSpanProcessor should implement locking around the calls Export to ensure that Export is not called concurrently from different threads.
The SimpleSpanProcessor is not thread-safe: it is not safe to call the
Exportmethod on the exporter concurrently, and theSimpleSpanProcessorends up callingExportfrom different threads without locking.The
SimpleSpanProcessorshould implement locking around the callsExportto ensure thatExportis not called concurrently from different threads.