diff options
author | Dirk Brenken <dev@brenken.org> | 2019-05-16 17:08:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-16 17:08:44 +0200 |
commit | 0a63e65bf60de25c016cc11c6468fe32e91916a1 (patch) | |
tree | 748dcf747103e8b6966cd60c7aed24d03e94b71b | |
parent | e9da852fba116a379f976c8f413ee3db4eea19a5 (diff) | |
parent | e65341e58e5a47021363cb01abd8a4bf5be56617 (diff) |
Merge pull request #2711 from dibdot/banip
luci-app-banip: change maxqueue default / sync with banIP 0.1.1
-rw-r--r-- | applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua b/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua index b802f4d4b5..57294e5c46 100644 --- a/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua +++ b/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua @@ -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 & 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 & 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 |