Fix the check of limiter
This commit is contained in:
parent
e4aaa390e9
commit
1af1fc4f6a
|
@ -602,7 +602,7 @@ handle_info(Info, State = #state{channel = Channel}) ->
|
||||||
%% Ensure rate limit
|
%% Ensure rate limit
|
||||||
|
|
||||||
ensure_rate_limit(Stats, State = #state{limiter = Limiter}) ->
|
ensure_rate_limit(Stats, State = #state{limiter = Limiter}) ->
|
||||||
case ?ENABLED(limiter) andalso emqx_limiter:check(Stats, Limiter) of
|
case ?ENABLED(Limiter) andalso emqx_limiter:check(Stats, Limiter) of
|
||||||
false -> State;
|
false -> State;
|
||||||
{ok, Limiter1} ->
|
{ok, Limiter1} ->
|
||||||
State#state{limiter = Limiter1};
|
State#state{limiter = Limiter1};
|
||||||
|
|
Loading…
Reference in New Issue