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/atlas/src/disagg_storage/oplog_application_coordinator.cpp:279: MISSING_LOCK 177416 Accessing "this->_oplogWriterShutdownFuture" without holding lock "mongo::disagg::OplogApplicationCoordinator._mutex". Elsewhere, "mongo::disagg::OplogApplicationCoordinator._oplogWriterShutdownFuture" is written to with "OplogApplicationCoordinator._mutex" held 1 out of 1 times.