From ddd4b46071fcc4ef233c432726efbaa584513aad Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Sat, 18 Aug 2018 10:07:45 -0400 Subject: [PATCH] GH-780: Fix typo --- src/reference/asciidoc/appendix.adoc | 2 +- src/reference/asciidoc/quick-tour.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reference/asciidoc/appendix.adoc b/src/reference/asciidoc/appendix.adoc index 2e72ccba..f6e05d29 100644 --- a/src/reference/asciidoc/appendix.adoc +++ b/src/reference/asciidoc/appendix.adoc @@ -50,7 +50,7 @@ When using `spring-kafka-test` (version 2.1.x, starting with version 2.1.5) with Starting with version 2.1.9, the 2.0.0 `kafka-clients` jar can be used with similar overrides to those described above. IMPORTANT: When using the 2.0.0 clients with `spring-kafka` 2.1.x, the framework will continue to use the blocking `poll(long)` method to fetch records (future releases will use the `poll(Duration)` method). -Other previously blocking consumer APIs will timeout according to the `ConsumerConfig.DEFAULT_API_TIMEOUT_MS_CONFIG` (`default.api.timeout.ms`) property; refer to the https://kafka.apache.org/documentation/#upgrade_200_notable[Notable Changes in 2.0.0] section in the Kafka documentation for more information. +Other previously blocking consumer APIs will time out according to the `ConsumerConfig.DEFAULT_API_TIMEOUT_MS_CONFIG` (`default.api.timeout.ms`) property; refer to the https://kafka.apache.org/documentation/#upgrade_200_notable[Notable Changes in 2.0.0] section in the Kafka documentation for more information. [appendix] [[history]] diff --git a/src/reference/asciidoc/quick-tour.adoc b/src/reference/asciidoc/quick-tour.adoc index a1033ff7..9b8e8cc3 100644 --- a/src/reference/asciidoc/quick-tour.adoc +++ b/src/reference/asciidoc/quick-tour.adoc @@ -35,7 +35,7 @@ compile 'org.springframework.kafka:spring-kafka:{spring-kafka-version}' NOTE: The framework has been tested with `kafka-clients` 1.1.1 and 2.0.0; when using the `spring-kafka-test` embedded Kafka broker, you must override other jars, as described in <>. IMPORTANT: When using the 2.0.0 clients with `spring-kafka` 2.1.x, the framework will continue to use the blocking `poll(long)` method to fetch records (future releases will use the `poll(Duration)` method). -Other previously blocking consumer APIs will timeout according to the `ConsumerConfig.DEFAULT_API_TIMEOUT_MS_CONFIG` (`default.api.timeout.ms`) property; refer to the https://kafka.apache.org/documentation/#upgrade_200_notable[Notable Changes in 2.0.0] section in the Kafka documentation for more information. +Other previously blocking consumer APIs will time out according to the `ConsumerConfig.DEFAULT_API_TIMEOUT_MS_CONFIG` (`default.api.timeout.ms`) property; refer to the https://kafka.apache.org/documentation/#upgrade_200_notable[Notable Changes in 2.0.0] section in the Kafka documentation for more information. ===== Very, Very Quick