mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.server: Try to require configmanager instead checking for the prosody global which does not yet exist when net.server is loaded now
This commit is contained in:
parent
2fa049d2e1
commit
f769dbb269
1 changed files with 7 additions and 3 deletions
|
@ -6,9 +6,13 @@
|
||||||
-- COPYING file in the source package for more information.
|
-- COPYING file in the source package for more information.
|
||||||
--
|
--
|
||||||
|
|
||||||
local server_type = prosody and require "core.configmanager".get("*", "network_backend") or "select";
|
local server_type = "select";
|
||||||
if prosody and require "core.configmanager".get("*", "use_libevent") then
|
local ok, configmanager = pcall(require, "core.configmanager");
|
||||||
server_type = "event";
|
if ok then
|
||||||
|
server_type = configmanager.get("*", "network_backend") or "select";
|
||||||
|
if require "core.configmanager".get("*", "use_libevent") then
|
||||||
|
server_type = "event";
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if server_type == "event" then
|
if server_type == "event" then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue