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
/data/mci/83a570f9d8382820b3504817f965c51d/bazel_cache/8ee0d8cb0d396108bac8406cca1a1b37/execroot/_main/src/mongo/client/retry_strategy.cpp:119: MISSING_LOCK 175980 Accessing "this->_returnRate" without holding lock "mongo::WriteRarelyRWMutex._writeMutex". Elsewhere, "mongo::AdaptiveRetryStrategy::RetryBudget._returnRate" is written to with "WriteRarelyRWMutex._writeMutex" held 1 out of 1 times (1 of these accesses strongly imply that it is necessary).