Remove experimental warning in super stream commands

This commit is contained in:
Arnaud Cogoluègnes 2022-09-06 15:42:12 +02:00
parent 8a6a16f447
commit 20216ef3c1
No known key found for this signature in database
GPG Key ID: D5C8C4DFAD43AFA8
2 changed files with 4 additions and 4 deletions

View File

@ -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};

View File

@ -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};