Skip to content

Commit 3e63d37

Browse files
mkuratczykmergify[bot]
authored andcommitted
Fix formatter crash
Before: ``` FORMATTER CRASH: {"Waiting for ~ts queues and streams to have quorum+1 replicas online.You can list them with `rabbitmq-diagnostics check_if_node_is_quorum_critical`","\t"} ``` After: ``` Waiting for 9 queues and streams to have quorum+1 replicas online. You can list them with `rabbitmq-diagnostics check_if_node_is_quorum_critical` ``` (cherry picked from commit b64ebf1) (cherry picked from commit 1b4d4f1)
1 parent d459258 commit 3e63d37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbit/src/rabbit_upgrade_preparation.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ do_await_safe_online_quorum(IterationsLeft) ->
7474
0 ->
7575
case length(EndangeredQueues) of
7676
0 -> ok;
77-
N -> rabbit_log:info("Waiting for ~ts queues and streams to have quorum+1 replicas online."
77+
N -> rabbit_log:info("Waiting for ~p queues and streams to have quorum+1 replicas online. "
7878
"You can list them with `rabbitmq-diagnostics check_if_node_is_quorum_critical`", [N])
7979
end,
8080
case endangered_critical_components() of

0 commit comments

Comments
 (0)