Skip to content

Commit

Permalink
Remove experimental warning in super stream commands
Browse files Browse the repository at this point in the history
  • Loading branch information
acogoluegnes committed Sep 6, 2022
1 parent 8a6a16f commit 20216ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ scopes() ->
[streams].

description() ->
<<"Add a super stream (experimental feature)">>.
<<"Add a super stream">>.

switches() ->
[{partitions, integer},
Expand Down Expand Up @@ -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};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ scopes() ->
[streams].

description() ->
<<"Delete a super stream (experimental feature)">>.
<<"Delete a super stream">>.

help_section() ->
{plugin, stream}.
Expand Down Expand Up @@ -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};
Expand Down

0 comments on commit 20216ef

Please sign in to comment.