diff options
-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)} |