From de1534d83726537253978309e06c181cb2d5b19f Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sun, 29 Sep 2019 18:45:09 +0100 Subject: [PATCH] reduce the default host retry interval --- core/src/main/groovy/com/muwire/core/MuWireSettings.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy b/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy index 5705bcb3..5fb08622 100644 --- a/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy +++ b/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy @@ -50,7 +50,7 @@ class MuWireSettings { updateType = props.getProperty("updateType","jar") shareDownloadedFiles = Boolean.parseBoolean(props.getProperty("shareDownloadedFiles","true")) downloadSequentialRatio = Float.valueOf(props.getProperty("downloadSequentialRatio","0.8")) - hostClearInterval = Integer.valueOf(props.getProperty("hostClearInterval","60")) + hostClearInterval = Integer.valueOf(props.getProperty("hostClearInterval","15")) hostHopelessInterval = Integer.valueOf(props.getProperty("hostHopelessInterval", "1440")) meshExpiration = Integer.valueOf(props.getProperty("meshExpiration","60")) embeddedRouter = Boolean.valueOf(props.getProperty("embeddedRouter","false"))