From ef7b511b0ecc05a3d036b3cf48df8ca852a464e1 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 28 Apr 2016 09:29:49 -0700 Subject: [PATCH] Polish --- .../boot/autoconfigure/amqp/RabbitProperties.java | 4 ++-- .../src/main/asciidoc/appendix-application-properties.adoc | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java index 60927485a73..9c27d1a0a39 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java @@ -218,8 +218,8 @@ public class RabbitProperties { private String trustStorePassword; /** - * The SSL algorithm to use (e.g. TLSv1.1). Default is set automatically by the - * rabbit client library. + * SSL algorithm to use (e.g. TLSv1.1). Default is set automatically by the rabbit + * client library. */ private String algorithm; diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index 8971067a9f1..51d01ab4e90 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -760,6 +760,7 @@ content into your application; rather pick only the properties that you need. spring.rabbitmq.ssl.key-store-password= # Password used to access the key store. spring.rabbitmq.ssl.trust-store= # Trust store that holds SSL certificates. spring.rabbitmq.ssl.trust-store-password= # Password used to access the trust store. + spring.rabbitmq.ssl.algorithm= # SSL algorithm to use. By default configure by the rabbit client library. spring.rabbitmq.username= # Login user to authenticate to the broker. spring.rabbitmq.virtual-host= # Virtual host to use when connecting to the broker.