There was an error while loading. Please reload this page.
1 parent 8108a29 commit 63b6023Copy full SHA for 63b6023
1 file changed
src/aws-cpp-sdk-core/include/aws/core/internal/RetryStrategyImpl.h
@@ -62,7 +62,11 @@ namespace Aws
62
ReleaseRetryQuota(capacityAmount);
63
}
64
65
- int GetRetryQuota() const override { return m_retryQuota; }
+ int GetRetryQuota() const override
66
+ {
67
+ Aws::Utils::Threading::ReaderLockGuard guard(m_retryQuotaLock);
68
+ return m_retryQuota;
69
+ }
70
71
private:
72
QuotaConfig m_config;
0 commit comments