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_applier.cpp:349: MISSING_LOCK 152460 Accessing "this->_opTimeNotificationList" without holding lock "mongo::repl::TenantOplogApplier._mutex". Elsewhere, "mongo::repl::TenantOplogApplier._opTimeNotificationList" is written to with "TenantOplogApplier._mutex" held 2 out of 3 times.