Increase Gmail backoff time

This commit is contained in:
M66B 2020-02-05 18:43:03 +01:00
parent f2b577cec1
commit b946d03119
1 changed files with 1 additions and 1 deletions

View File

@ -1457,7 +1457,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
EntityLog.log(this, account.name + " backoff=" + backoff);
try {
state.acquire(backoff *
("imap.gmail.com".equalsIgnoreCase(account.host) ? 1500L : 1000L));
("imap.gmail.com".equalsIgnoreCase(account.host) ? 2000L : 1000L));
} catch (InterruptedException ex) {
Log.w(account.name + " backoff " + ex.toString());
}