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/shard_merge_recipient_service.cpp:2268: MISSING_LOCK 153345 Accessing "this->_importQuorumPromise" without holding lock "mongo::repl::ShardMergeRecipientService::Instance._mutex". Elsewhere, "mongo::repl::ShardMergeRecipientService::Instance._importQuorumPromise" is written to with "Instance._mutex" held 2 out of 2 times.