diff options
Diffstat (limited to 'src/syncevo/SyncContext.cpp')
-rw-r--r-- | src/syncevo/SyncContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syncevo/SyncContext.cpp b/src/syncevo/SyncContext.cpp index a2e2bf4b..c58f0889 100644 --- a/src/syncevo/SyncContext.cpp +++ b/src/syncevo/SyncContext.cpp @@ -4168,7 +4168,7 @@ SyncMLStatus SyncContext::doSync() // (MB #6370). // Same if() as below for FAILED. if (m_serverMode || - !m_retryInterval || duration + 0.1 >= m_retryDuration || requestNum == 1) { + !m_retryInterval || duration + 0.9 >= m_retryDuration || requestNum == 1) { SE_LOG_INFO(NULL, "Transport giving up after %d retries and %ld:%02ldmin", m_retries, @@ -4242,7 +4242,7 @@ SyncMLStatus SyncContext::doSync() // we might as well give up now immediately. Include some fuzz factor // in case we woke up slightly too early. if (m_serverMode || - !m_retryInterval || duration + resendDelay + 0.1 >= m_retryDuration || requestNum == 1) { + !m_retryInterval || duration + resendDelay + 0.9 >= m_retryDuration || requestNum == 1) { SE_LOG_INFO(NULL, "Transport giving up after %d retries and %ld:%02ldmin", m_retries, |