From 9d5a51a9fcb8e2ad310525630b94a5e54727d8d6 Mon Sep 17 00:00:00 2001 From: Borahm Date: Thu, 25 Apr 2024 03:32:23 +0900 Subject: [PATCH] Fix typo in docs (#3215) * Fix typo in enforce-rebalance docs (cherry picked from commit d2c858e2fc4ccf7a6bf362925d6d9a67f11e8c68) --- .../ROOT/pages/kafka/receiving-messages/enforced-rebalance.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/enforced-rebalance.adoc b/spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/enforced-rebalance.adoc index 145550ef6f..30e0ea7548 100644 --- a/spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/enforced-rebalance.adoc +++ b/spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/enforced-rebalance.adoc @@ -6,7 +6,7 @@ Starting with version `3.1.2`, Spring for Apache Kafka provides an option to inv When calling this API, it is simply alerting the Kafka consumer to trigger an enforced rebalance; the actual rebalance will only occur as part of the next `poll()` operation. If there is already a rebalance in progress, calling an enforced rebalance is a NO-OP. The caller must wait for the current rebalance to complete before invoking another one. -See the javadocs for `enfroceRebalance` for more details. +See the javadocs for `enforceRebalance` for more details. The following code snippet shows the essence of enforcing a rebalance using the message listener container.