mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Reduced local operation retrying
This commit is contained in:
parent
a9dcf095f6
commit
bce427a510
1 changed files with 2 additions and 2 deletions
|
@ -138,8 +138,8 @@ class Core {
|
|||
private static final int DOWNLOAD_BATCH_SIZE = 20;
|
||||
private static final long YIELD_DURATION = 200L; // milliseconds
|
||||
private static final long FUTURE_RECEIVED = 30 * 24 * 3600 * 1000L; // milliseconds
|
||||
private static final int LOCAL_RETRY_MAX = 3;
|
||||
private static final long LOCAL_RETRY_DELAY = 10 * 1000L; // milliseconds
|
||||
private static final int LOCAL_RETRY_MAX = 2;
|
||||
private static final long LOCAL_RETRY_DELAY = 5 * 1000L; // milliseconds
|
||||
private static final int TOTAL_RETRY_MAX = LOCAL_RETRY_MAX * 10;
|
||||
|
||||
static void processOperations(
|
||||
|
|
Loading…
Reference in a new issue