mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server: Fall back to default backend from libevent instead of always select
Fixes that selecting libevent when unavaibalbe would fall back to select instead of epoll, even if that's available. This way, we only have to update it in once place when choosing a new default.
This commit is contained in:
parent
307e58cc75
commit
598e93a600
1 changed files with 2 additions and 2 deletions
|
@ -25,8 +25,8 @@ end
|
|||
|
||||
if server_type == "event" then
|
||||
if not pcall(require, "luaevent.core") then
|
||||
log("error", "libevent not found, falling back to select()");
|
||||
server_type = "select"
|
||||
log("error", "libevent not found, falling back to %s", default_backend);
|
||||
server_type = default_backend;
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue