Merge pull request #13955 from rabbitmq/ik-qq-reconciliation-followup

QQ Reconciliator - implement handle_info/2 for the event subscriber
This commit is contained in:
Iliia Khaprov - VMware by Broadcom 2025-05-26 16:09:02 +02:00 committed by GitHub
commit 5ed2fbe2b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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}.