25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-12-18 17:24:31 +01:00

Redis: Disable some dialyzer warnings when using old Erlang 20

This commit is contained in:
Badlop 2024-12-05 12:00:05 +01:00
parent f269d5b613
commit ce6d5aa6a0

View File

@ -69,6 +69,14 @@
-export_type([error_reason/0]). -export_type([error_reason/0]).
-ifdef(USE_OLD_HTTP_URI). % Erlang/OTP lower than 21
-dialyzer([{no_return, do_connect/6},
{no_unused, flush_queue/1},
{no_match, flush_queue/1},
{no_unused, re_subscribe/2},
{no_match, handle_info/2}]).
-endif.
%%%=================================================================== %%%===================================================================
%%% API %%% API
%%%=================================================================== %%%===================================================================