QQ Reconciliator - implement handle_info/2 for the event subscriber to avoid warnings

This commit is contained in:
Iliia Khaprov 2025-05-26 14:43:25 +02:00
parent 7289487702
commit 458dc89614
No known key found for this signature in database
GPG Key ID: 4DCFF8F358E49AED
1 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,7 @@
-behaviour(gen_event).
-export([init/1, handle_event/2, handle_call/2]).
-export([init/1, handle_event/2, handle_call/2, handle_info/2]).
-export([register/0, unregister/0]).
-include_lib("rabbit_common/include/rabbit.hrl").
@ -49,3 +49,6 @@ handle_event(#event{type = operator_policy_set}, State) ->
{ok, State};
handle_event(_, State) ->
{ok, State}.
handle_info(_, State) ->
{ok, State}.