Merge pull request #266 from rabbitmq/rabbitmq-server-1712

Output cipher suites one by one
This commit is contained in:
Michael Klishin 2018-10-24 02:15:26 +03:00 committed by GitHub
commit f7d307dd30
1 changed files with 1 additions and 1 deletions

View File

@ -41,5 +41,5 @@ defmodule RabbitMQ.CLI.Diagnostics.Commands.CipherSuitesCommand do
def banner([], %{openssl_format: true}), do: "Listing available cipher suites in the OpenSSL format"
def banner([], %{openssl_format: false}), do: "Listing available cipher suites in the Erlang term format"
def formatter(), do: RabbitMQ.CLI.Formatters.Erlang
def formatter(), do: RabbitMQ.CLI.Formatters.String
end