Skip to content

Commit 319c114

Browse files
Docs: fix some broken links
* fix broken link to error-handlers * fix broken link to retrying-batch-eh
1 parent 8e7c72f commit 319c114

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-kafka-docs/src/main/asciidoc/kafka.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ This is similar functionality to throwing an exception when the container is con
12571257
When using a batch listener, you can specify the index within the batch where the failure occurred.
12581258
When `nack()` is called, offsets will be committed for records before the index and seeks are performed on the partitions for the failed and discarded records so that they will be redelivered on the next `poll()`.
12591259

1260-
See <<serror-handlers>> for more information.
1260+
See <<error-handlers>> for more information.
12611261

12621262
IMPORTANT: When using partition assignment via group management, it is important to ensure the `sleep` argument (plus the time spent processing records from the previous poll) is less than the consumer `max.poll.interval.ms` property.
12631263

@@ -5005,7 +5005,7 @@ If you are using Spring Boot, you simply need to add the error handler as a `@Be
50055005
===== DefaultErrorHandler
50065006

50075007
This new error handler replaces the `SeekToCurrentErrorHandler` and `RecoveringBatchErrorHandler`, which have been the default error handlers for several releases now.
5008-
One difference is that the fallback behavior for batch listeners (when an exception other than a `BatchListenerFailedException` is thrown) is the equivalent of the <<retrying-beh>>.
5008+
One difference is that the fallback behavior for batch listeners (when an exception other than a `BatchListenerFailedException` is thrown) is the equivalent of the <<retrying-batch-eh>>.
50095009

50105010
The error handler can recover (skip) a record that keeps failing.
50115011
By default, after ten failures, the failed record is logged (at the `ERROR` level).

0 commit comments

Comments
 (0)