mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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.
|
-- 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
|
if use_luaevent then
|
||||||
use_luaevent = pcall(require, "luaevent.core");
|
use_luaevent = pcall(require, "luaevent.core");
|
||||||
|
@ -43,7 +43,7 @@ end
|
||||||
if prosody then
|
if prosody then
|
||||||
local config_get = require "core.configmanager".get;
|
local config_get = require "core.configmanager".get;
|
||||||
local function load_config()
|
local function load_config()
|
||||||
local settings = config_get("*", "core", "network_settings") or {};
|
local settings = config_get("*", "network_settings") or {};
|
||||||
if use_luaevent then
|
if use_luaevent then
|
||||||
local event_settings = {
|
local event_settings = {
|
||||||
ACCEPT_DELAY = settings.event_accept_retry_interval;
|
ACCEPT_DELAY = settings.event_accept_retry_interval;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue