diff options
author | dcorbacho <dparracorbacho@piotal.io> | 2021-04-30 11:29:53 +0200 |
---|---|---|
committer | dcorbacho <dparracorbacho@piotal.io> | 2021-04-30 11:33:05 +0200 |
commit | 2998234f4851407fd7e2aaad6826737870dfea1f (patch) | |
tree | 408b6e1980fa5c23840f12c19e73dc68bfb18bd3 | |
parent | a20cd9ea382bdd51ffee973c37e72567dd872d77 (diff) | |
download | rabbitmq-server-git-alias-stream-status.tar.gz |
Move stream_status command to streamsalias-stream-status
Keeps the alias to diagnostics and queues
-rw-r--r-- | deps/rabbitmq_cli/lib/rabbitmq/cli/streams/commands/stream_status_command.ex (renamed from deps/rabbitmq_cli/lib/rabbitmq/cli/queues/commands/stream_status_command.ex) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/rabbitmq_cli/lib/rabbitmq/cli/queues/commands/stream_status_command.ex b/deps/rabbitmq_cli/lib/rabbitmq/cli/streams/commands/stream_status_command.ex index 981ac03176..ef72e9c0d6 100644 --- a/deps/rabbitmq_cli/lib/rabbitmq/cli/queues/commands/stream_status_command.ex +++ b/deps/rabbitmq_cli/lib/rabbitmq/cli/streams/commands/stream_status_command.ex @@ -4,11 +4,11 @@ ## ## Copyright (c) 2007-2021 VMware, Inc. or its affiliates. All rights reserved. -defmodule RabbitMQ.CLI.Queues.Commands.StreamStatusCommand do +defmodule RabbitMQ.CLI.Streams.Commands.StreamStatusCommand do alias RabbitMQ.CLI.Core.DocGuide @behaviour RabbitMQ.CLI.CommandBehaviour - def scopes(), do: [:diagnostics, :queues] + def scopes(), do: [:diagnostics, :queues, :streams] def merge_defaults(args, opts), do: {args, Map.merge(%{tracking: false, vhost: "/"}, opts)} |