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/s/migration_destination_manager.cpp:1355: MISSING_LOCK 142039 Accessing "this->_scopedReceiveChunk" without holding lock "mongo::MigrationDestinationManager._mutex". Elsewhere, "mongo::MigrationDestinationManager._scopedReceiveChunk" is written to with "MigrationDestinationManager._mutex" held 3 out of 3 times.