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/replication_coordinator_disagg_storage.cpp:319: MISSING_LOCK 177412 Accessing "this->_lastAppliedOpTimeAndWallTime" without holding lock "mongo::disagg::ReplicationCoordinatorDisaggregatedStorage._oplogManagementMutex". Elsewhere, "mongo::disagg::ReplicationCoordinatorDisaggregatedStorage._lastAppliedOpTimeAndWallTime" is written to with "ReplicationCoordinatorDisaggregatedStorage._oplogManagementMutex" held 1 out of 2 times (1 of these accesses strongly imply that it is necessary).