mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-22 15:55:57 +00:00
Limit poll interval for fast fails
This commit is contained in:
parent
b687a6d768
commit
d323e9c37b
1 changed files with 3 additions and 1 deletions
|
@ -1709,7 +1709,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
long now = new Date().getTime();
|
||||
|
||||
// Check for fast successive server, connectivity, etc failures
|
||||
long fail_threshold = account.poll_interval * 60 * 1000L * FAST_FAIL_THRESHOLD / 100;
|
||||
long poll_interval = Math.min(account.poll_interval, CONNECT_BACKOFF_ALARM_START);
|
||||
long fail_threshold = poll_interval * 60 * 1000L * FAST_FAIL_THRESHOLD / 100;
|
||||
long was_connected = (account.last_connected == null ? 0 : now - account.last_connected);
|
||||
if (was_connected < fail_threshold && !Helper.isCharging(this)) {
|
||||
if (state.getBackoff() == CONNECT_BACKOFF_START) {
|
||||
|
@ -1734,6 +1735,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
" fails=" + fast_fails +
|
||||
" was=" + (was_connected / 1000L) +
|
||||
" first=" + ((now - first_fail) / 1000L) +
|
||||
" poll=" + poll_interval +
|
||||
" avg=" + (avg_fail / 1000L) + "/" + (fail_threshold / 1000L) +
|
||||
" missing=" + (missing / 1000L) +
|
||||
" compensate=" + compensate +
|
||||
|
|
Loading…
Reference in a new issue