luci-app-banip: change maxqueue default / sync with banIP 0.1.1 2711/head
authorDirk Brenken <dev@brenken.org>
Thu, 16 May 2019 08:39:48 +0000 (10:39 +0200)
committerDirk Brenken <dev@brenken.org>
Thu, 16 May 2019 08:39:48 +0000 (10:39 +0200)
* change maxqueue default to '4' to reduce the overall system load

Signed-off-by: Dirk Brenken <dev@brenken.org>
applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua

index b802f4d4b5d95885170a12f8ba3fb90f19f0c430..57294e5c46c82b0126842e5c845992555a5debfb 100644 (file)
@@ -125,9 +125,9 @@ e5:depends("ban_backup", 1)
 e5.rmempty = true
 
 e6 = e:option(Value, "ban_maxqueue", translate("Max. Download Queue"),
-       translate("Size of the download queue to handle downloads &amp; IPset processing in parallel (default '8'). ")
-       .. translate("For further performance improvements you can raise this value, e.g. '16' or '32' should be safe."))
-e6.default = 8
+       translate("Size of the download queue to handle downloads &amp; IPset processing in parallel (default '4'). ")
+       .. translate("For further performance improvements you can raise this value, e.g. '8' or '16' should be safe."))
+e6.default = 4
 e6.datatype = "range(1,32)"
 e6.rmempty = false