Data race condition
The value of the shared data will be determined by the interleaving of thread execution. Thread shared data is accessed without holding an appropriate lock, possibly causing a race condition
/src/mongo/db/modules/enterprise/src/streams/management/stream_manager.cpp:852: MISSING_LOCK 171785 Accessing "this->_processors" without holding lock "streams::StreamManager._mutex". Elsewhere, "streams::StreamManager._processors" is written to with "StreamManager._mutex" held 1 out of 1 times.