Default recoveryModeTimeout increased to 24 hours for now.

It doesn't quite work as intended, so it's best that it doesn't interfere right away. 24 hours should be long enough for any issues to be manually resolved.
This commit is contained in:
CalDescent 2023-05-21 15:34:27 +01:00
parent b1a904a3c7
commit 3763035d4a

View File

@ -216,7 +216,7 @@ public class Settings {
private int maxRetries = 2;
/** The number of seconds of no activity before recovery mode begins */
public long recoveryModeTimeout = 10 * 60 * 1000L;
public long recoveryModeTimeout = 24 * 60 * 60 * 1000L;
/** Minimum peer version number required in order to sync with them */
private String minPeerVersion = "4.0.0";