diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2021-10-18 13:15:33 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2021-10-18 13:15:33 +0300 |
commit | 382668bed7b2e5df14fdd7cf51ce19e82eaecda1 (patch) | |
tree | 3c5e46400f651cf12ef404ce63f78acfd7ae176c /indra | |
parent | cbaba2df56c66926e051d50b6cb02955c81c2a6c (diff) |
SL-16196 FIXED retryCount never gets incremented
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvoicevivox.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index 4d2eac8c09..cc8c7127db 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -1047,6 +1047,7 @@ bool LLVivoxVoiceClient::provisionVoiceAccount() if (status == LLCore::HttpStatus(404)) { F32 timeout = pow(PROVISION_RETRY_TIMEOUT, static_cast<float>(retryCount)); + retryCount++; LL_WARNS("Voice") << "Provision CAP 404. Retrying in " << timeout << " seconds." << LL_ENDL; if (sShuttingDown) { |