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 64ba80f commit d2c4599Copy full SHA for d2c4599
deps/rabbitmq_cli/lib/rabbitmq/cli/queues/commands/grow_command.ex
@@ -64,7 +64,13 @@ defmodule RabbitMQ.CLI.Queues.Commands.GrowCommand do
64
Validators.chain(
65
[
66
&Validators.rabbit_is_running/2,
67
- &Validators.existing_cluster_member/2
+ fn args = [n, _], opts ->
68
+ if is_integer(n) do
69
+ :ok
70
+ else
71
+ Validators.existing_cluster_member(args, opts)
72
+ end
73
74
],
75
[args, opts]
76
)
0 commit comments