Skip to content

Commit f92f766

Browse files
Fix typo document (#3824)
Signed-off-by: Tran Ngoc Nhan <[email protected]> **Auto-cherry-pick to `3.3.x` & `3.2.x`**
1 parent 5261dec commit f92f766

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/listener-annotation.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public KafkaListenerContainerFactory<?> batchFactory() {
251251
ConcurrentKafkaListenerContainerFactory<Integer, String> factory =
252252
new ConcurrentKafkaListenerContainerFactory<>();
253253
factory.setConsumerFactory(consumerFactory());
254-
factory.setBatchListener(true); // <<<<<<<<<<<<<<<<<<<<<<<<<
254+
factory.setBatchListener(true);
255255
return factory;
256256
}
257257
----
@@ -342,7 +342,7 @@ public void pollResults(ConsumerRecords<?, ?> records) {
342342
----
343343

344344
IMPORTANT: If the container factory has a `RecordFilterStrategy` configured, it is ignored for `ConsumerRecords<?, ?>` listeners, with a `WARN` log message emitted.
345-
Records can only be filtered with a batch listener if the `<List<?>>` form of listener is used.
345+
Records can only be filtered with a batch listener if the `List<?>` form of listener is used.
346346
By default, records are filtered one-at-a-time; starting with version 2.8, you can override `filterBatch` to filter the entire batch in one call.
347347

348348
[[annotation-properties]]

spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/receiving-messages/message-listener-container.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Also, starting with version 2.7, there is now a `BatchInterceptor`, providing si
1616
In addition, the `ConsumerAwareRecordInterceptor` (and `BatchInterceptor`) provide access to the `Consumer<?, ?>`.
1717
This might be used, for example, to access the consumer metrics in the interceptor.
1818

19-
IMPORTANT: You should not execute any methods that affect the consumer's positions and or committed offsets in these interceptors; the container needs to manage such information.
19+
IMPORTANT: You should not execute any methods that affect the consumer's positions and/or committed offsets in these interceptors; the container needs to manage such information.
2020

2121
IMPORTANT: If the interceptor mutates the record (by creating a new one), the `topic`, `partition`, and `offset` must remain the same to avoid unexpected side effects such as record loss.
2222

0 commit comments

Comments
 (0)