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:122: MISSING_LOCK 175978 Accessing "this->_capacity" without holding lock "mongo::WriteRarelyRWMutex._writeMutex". Elsewhere, "mongo::AdaptiveRetryStrategy::RetryBudget._capacity" is written to with "WriteRarelyRWMutex._writeMutex" held 1 out of 1 times.