From 8efc478f35c110007339e163255c2ef0cd853cd1 Mon Sep 17 00:00:00 2001 From: Daniel kim Date: Mon, 23 Sep 2024 23:23:53 +0900 Subject: [PATCH] Fix - "RetryTemplate" misspelling in streams.adoc (#3505) In streams.adoc, RetryTemplate is incorrectly written "RetryTemmplate" --- .../src/main/antora/modules/ROOT/pages/streams.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-kafka-docs/src/main/antora/modules/ROOT/pages/streams.adoc b/spring-kafka-docs/src/main/antora/modules/ROOT/pages/streams.adoc index cee68e5906..40b9dee6c2 100644 --- a/spring-kafka-docs/src/main/antora/modules/ROOT/pages/streams.adoc +++ b/spring-kafka-docs/src/main/antora/modules/ROOT/pages/streams.adoc @@ -375,9 +375,9 @@ When calling this method, the user can specifially ask for the proper state stor When trying to retrieve the state store using the `KafkaStreamsInteractiveQueryService`, there is a chance that the state store might not be found for various reasons. If those reasons are transitory, `KafkaStreamsInteractiveQueryService` provides an option to retry the retrieval of the state store by allowing to inject a custom `RetryTemplate`. -By default, the `RetryTemmplate` that is used in `KafkaStreamsInteractiveQueryService` uses a maximum attempts of three with a fixed backoff of one second. +By default, the `RetryTemplate` that is used in `KafkaStreamsInteractiveQueryService` uses a maximum attempts of three with a fixed backoff of one second. -Here is how you can inject a custom `RetryTemmplate` into `KafkaStreamsInteractiveQueryService` with the maximum attempts of ten. +Here is how you can inject a custom `RetryTemplate` into `KafkaStreamsInteractiveQueryService` with the maximum attempts of ten. [source, java] ----