25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00
This commit is contained in:
Evgeniy Khramtsov 2018-06-21 15:14:19 +03:00
parent 55f8aa1b22
commit 6ffb120fce

View File

@ -335,5 +335,5 @@ opt_type(oom_killer) ->
opt_type(oom_watermark) ->
fun(I) when is_integer(I), I>0, I<100 -> I end;
opt_type(oom_queue) ->
fun(I) when is_integer(I)>0 -> I end;
fun(I) when is_integer(I), I>0 -> I end;
opt_type(_) -> [oom_killer, oom_watermark, oom_queue].