Merge pull request #2711 from dibdot/banip

luci-app-banip: change maxqueue default / sync with banIP 0.1.1
This commit is contained in:
Dirk Brenken 2019-05-16 17:08:44 +02:00 committed by GitHub
commit 0a63e65bf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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