MAXIMUM_RETRIES reduced from 3 to 1

This commit is contained in:
CalDescent 2021-03-30 13:07:34 +01:00
parent c3e5298ecd
commit 8d613a6472

View File

@ -54,7 +54,7 @@ public class Synchronizer {
private static final int MAXIMUM_REQUEST_SIZE = 200; // XXX move to Settings?
/** Number of retry attempts if a peer fails to respond with the requested data */
private static final int MAXIMUM_RETRIES = 3; // XXX move to Settings?
private static final int MAXIMUM_RETRIES = 1; // XXX move to Settings?
private static Synchronizer instance;