net.server_select: Deprecate and warn about it

To be removed in the future, but not right now. Give the log warning a
chance to prod anyone who might have network_backend="select" in their
config first.

There's also things built on Verse which uses server_select.lua, which
will need to be updated somehow.
This commit is contained in:
Kim Alvefur 2021-09-03 17:46:55 +02:00
parent 627df9737c
commit 6322b7c97e
2 changed files with 3 additions and 0 deletions

View file

@ -28,6 +28,7 @@ TRUNK
- Statistics now based on OpenMetrics
- Direct TLS support
- Offline messages aren't sent to MAM clients
- Network backend server_select deprecated
0.11.0
======

View file

@ -59,6 +59,8 @@ if server_type == "event" then
end
end
elseif server_type == "select" then
-- TODO Remove completely.
log("warn", "select is deprecated, the new default is epoll. For more info see https://prosody.im/doc/network_backend");
server = require "net.server_select";
local defaults = {};