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/repl/tenant_oplog_batcher.cpp:332: MISSING_LOCK 150150 Accessing "this->_batchRequested" without holding lock "mongo::repl::TenantOplogBatcher._mutex". Elsewhere, "mongo::repl::TenantOplogBatcher._batchRequested" is written to with "TenantOplogBatcher._mutex" held 3 out of 4 times (3 of these accesses strongly imply that it is necessary).