Merge pull request #3231 from rabbitmq/cli-fix-stream-doc-link

Fix broken link of stream docs in CLI
This commit is contained in:
Michael Klishin 2021-07-26 13:23:12 +03:00 committed by GitHub
commit e610393c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -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")

View File

@ -48,7 +48,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.AddReplicaCommand do
def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end

View File

@ -49,7 +49,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.DeleteReplicaCommand do
def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end

View File

@ -40,7 +40,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.SetStreamRetentionPolicyCommand do
def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end

View File

@ -58,7 +58,7 @@ defmodule RabbitMQ.CLI.Streams.Commands.StreamStatusCommand do
def usage_doc_guides() do
[
DocGuide.stream_queues()
DocGuide.streams()
]
end