Skip to content

Commit

Permalink
Merge pull request #3231 from rabbitmq/cli-fix-stream-doc-link
Browse files Browse the repository at this point in the history
Fix broken link of stream docs in CLI

(cherry picked from commit e610393)
  • Loading branch information
michaelklishin committed Jul 26, 2021
1 parent 1cac57b commit f644b48
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deps/rabbitmq_cli/lib/rabbitmq/cli/core/doc_guide.ex
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ defmodule RabbitMQ.CLI.Core.DocGuide do
Macros.defguide("plugins")
Macros.defguide("queues")
Macros.defguide("quorum_queues")
Macros.defguide("stream_queues", domain: "next.rabbitmq.com")
Macros.defguide("streams")
Macros.defguide("runtime_tuning", path_segment: "runtime")
Macros.defguide("tls", path_segment: "ssl")
Macros.defguide("troubleshooting")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.AddReplicaCommand do

def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.DeleteReplicaCommand do

def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.SetStreamRetentionPolicyCommand do

def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.StreamStatusCommand do

def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end

Expand Down

0 comments on commit f644b48

Please sign in to comment.