Remove experimental warning in super stream commands
This commit is contained in:
parent
8a6a16f447
commit
20216ef3c1
|
@ -36,7 +36,7 @@ scopes() ->
|
|||
[streams].
|
||||
|
||||
description() ->
|
||||
<<"Add a super stream (experimental feature)">>.
|
||||
<<"Add a super stream">>.
|
||||
|
||||
switches() ->
|
||||
[{partitions, integer},
|
||||
|
@ -280,7 +280,7 @@ create_super_stream(NodeName,
|
|||
end.
|
||||
|
||||
banner(_, _) ->
|
||||
<<"Adding a super stream (experimental feature)...">>.
|
||||
<<"Adding a super stream...">>.
|
||||
|
||||
output({error, Msg}, _Opts) ->
|
||||
{error, 'Elixir.RabbitMQ.CLI.Core.ExitCodes':exit_software(), Msg};
|
||||
|
|
|
@ -35,7 +35,7 @@ scopes() ->
|
|||
[streams].
|
||||
|
||||
description() ->
|
||||
<<"Delete a super stream (experimental feature)">>.
|
||||
<<"Delete a super stream">>.
|
||||
|
||||
help_section() ->
|
||||
{plugin, stream}.
|
||||
|
@ -82,7 +82,7 @@ delete_super_stream(NodeName, Timeout, VHost, SuperStream) ->
|
|||
end.
|
||||
|
||||
banner(_, _) ->
|
||||
<<"Deleting a super stream (experimental feature)...">>.
|
||||
<<"Deleting a super stream...">>.
|
||||
|
||||
output({error, Msg}, _Opts) ->
|
||||
{error, 'Elixir.RabbitMQ.CLI.Core.ExitCodes':exit_software(), Msg};
|
||||
|
|
Loading…
Reference in New Issue