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/resharding/resharding_coordinator_service.cpp:2449: MISSING_LOCK 142292 Accessing "this->this->_canEnterCritical" without holding lock "mongo::ReshardingCoordinator._fulfillmentMutex". Elsewhere, "mongo::ReshardingCoordinator._canEnterCritical" is written to with "ReshardingCoordinator._fulfillmentMutex" held 2 out of 2 times.