aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-09-14 14:19:05 +0200
committerKim Alvefur <zash@zash.se>2021-09-14 14:19:05 +0200
commit5940c38b24841927496ee2fca485b6951c2d37b4 (patch)
treea517d468f5b62f7ff1594796035aa34c2492eb4c /util
parent2f7189e8ff3dcbb27310f56194445cf0ada52af3 (diff)
downloadprosody-5940c38b24841927496ee2fca485b6951c2d37b4.tar.gz
prosody-5940c38b24841927496ee2fca485b6951c2d37b4.zip
util.prosodyctl.check: Suggest replacing 'use_libevent' with 'network_backend'
It's basically deprecated
Diffstat (limited to 'util')
-rw-r--r--util/prosodyctl/check.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua
index 7ece1069..4f8379c1 100644
--- a/util/prosodyctl/check.lua
+++ b/util/prosodyctl/check.lua
@@ -102,6 +102,7 @@ local function check(arg)
no_daemonize = "use the --daemonize/-D or --foreground/-F flags",
require_encryption = "use 'c2s_require_encryption' and 's2s_require_encryption'",
vcard_compatibility = "use 'mod_compat_vcard' from prosody-modules",
+ use_libevent = "use 'network_backend = \"event\"'",
};
-- FIXME all the singular _port and _interface options are supposed to be deprecated too
local deprecated_ports = { bosh = "http", legacy_ssl = "c2s_direct_tls" };
@@ -175,7 +176,6 @@ local function check(arg)
"use_dane",
"use_ipv4",
"use_ipv6",
- "use_libevent",
"websocket_frame_buffer_limit",
"websocket_frame_fragment_limit",
"websocket_get_response_body",