This commit is contained in:
Evgeniy Khramtsov 2018-06-21 15:14:19 +03:00
parent 55f8aa1b22
commit 6ffb120fce
1 changed files with 1 additions and 1 deletions

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].