We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e7c38 commit f47a339Copy full SHA for f47a339
src/rabbit_amqqueue.erl
@@ -1047,8 +1047,11 @@ list_local(VHostPath) ->
1047
% This event is necessary for the stats timer to be initialized with
1048
% the correct values once the management agent has started
1049
force_event_refresh(Ref) ->
1050
+ %% note: quorum queuse emit stats on periodic ticks that run unconditionally,
1051
+ %% so force_event_refresh is unnecessary (and, in fact, would only produce log noise) for QQs.
1052
+ ClassicQs = list_by_type(rabbit_classic_queue),
1053
[gen_server2:cast(amqqueue:get_pid(Q),
- {force_event_refresh, Ref}) || Q <- list()],
1054
+ {force_event_refresh, Ref}) || Q <- ClassicQs],
1055
ok.
1056
1057
-spec notify_policy_changed(amqqueue:amqqueue()) -> 'ok'.
0 commit comments