Move AccountSynchronizer delay back to 10s

At two seconds, the background AccountSynchronizer kicks in too
quickly and can interfere with foreground operations, especially when
the Inbox is being normalized at startup.
This commit is contained in:
Jim Nelson 2015-01-13 13:53:38 -08:00
parent ee7efd3a93
commit c0e10d71dd

View file

@ -6,7 +6,7 @@
private class Geary.ImapEngine.AccountSynchronizer : Geary.BaseObject {
private const int FETCH_DATE_RECEIVED_CHUNK_COUNT = 25;
private const int SYNC_DELAY_SEC = 2;
private const int SYNC_DELAY_SEC = 10;
public GenericAccount account { get; private set; }