From eb242b088978f9bad266d5a0b79d9a8be1c4cf79 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Fri, 29 May 2020 11:14:56 +0100 Subject: [PATCH] reduce default speed smoothing 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 f4aafc43..1bf82c32 100644 --- a/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy +++ b/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy @@ -104,7 +104,7 @@ class MuWireSettings { defaultFeedSequential = Boolean.valueOf(props.getProperty("defaultFeedSequential", "false")) defaultFeedUpdateInterval = Integer.valueOf(props.getProperty("defaultFeedUpdateInterval", "60000")) - speedSmoothSeconds = Integer.valueOf(props.getProperty("speedSmoothSeconds","60")) + speedSmoothSeconds = Integer.valueOf(props.getProperty("speedSmoothSeconds","10")) totalUploadSlots = Integer.valueOf(props.getProperty("totalUploadSlots","-1")) uploadSlotsPerUser = Integer.valueOf(props.getProperty("uploadSlotsPerUser","-1")) startChatServer = Boolean.valueOf(props.getProperty("startChatServer","false"))