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.
|
||||
--
|
||||
|
||||
local server_type = prosody and require "core.configmanager".get("*", "network_backend") or "select";
|
||||
if prosody and require "core.configmanager".get("*", "use_libevent") then
|
||||
server_type = "event";
|
||||
local server_type = "select";
|
||||
local ok, configmanager = pcall(require, "core.configmanager");
|
||||
if ok then
|
||||
server_type = configmanager.get("*", "network_backend") or "select";
|
||||
if require "core.configmanager".get("*", "use_libevent") then
|
||||
server_type = "event";
|
||||
end
|
||||
end
|
||||
|
||||
if server_type == "event" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue