From ccc6049adc79b550e3f9ef19385b478c5abf9916 Mon Sep 17 00:00:00 2001 From: Donovan Muller Date: Mon, 8 Feb 2016 08:32:59 +0200 Subject: [PATCH] Rabbit binder environment should be named rabbitmq In the context of trying to configure Rabbit, the docs mention that the Rabbit config properties be added under `rabbit`: ``` ... binders: rabbit1: type: rabbit environment: spring: rabbit: host: ... ``` however, the properties should be configured under `rabbitmq` as reference in the [Spring Boot Appendix A](https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html) --- .../src/main/asciidoc/spring-cloud-stream-overview.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc b/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc index 0ff921384..ff2b1560e 100644 --- a/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc +++ b/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc @@ -284,13 +284,13 @@ spring: type: rabbit environment: spring: - rabbit: + rabbitmq: host: rabbit2: type: rabbit environment: spring: - rabbit: + rabbitmq: host: ----