mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server: No sections in config anymore
This commit is contained in:
parent
869da6c240
commit
6aa6f988a6
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
-- COPYING file in the source package for more information.
|
||||
--
|
||||
|
||||
local use_luaevent = prosody and require "core.configmanager".get("*", "core", "use_libevent");
|
||||
local use_luaevent = prosody and require "core.configmanager".get("*", "use_libevent");
|
||||
|
||||
if use_luaevent then
|
||||
use_luaevent = pcall(require, "luaevent.core");
|
||||
|
@ -43,7 +43,7 @@ end
|
|||
if prosody then
|
||||
local config_get = require "core.configmanager".get;
|
||||
local function load_config()
|
||||
local settings = config_get("*", "core", "network_settings") or {};
|
||||
local settings = config_get("*", "network_settings") or {};
|
||||
if use_luaevent then
|
||||
local event_settings = {
|
||||
ACCEPT_DELAY = settings.event_accept_retry_interval;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue