Skip to content

Commit a18da73

Browse files
fix some errors as per PR comments
1 parent b5e3503 commit a18da73

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/sequencing.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[[sequencing]]
2-
= Starting `@KafkaListener`s in Sequence
2+
= Starting `@KafkaListener`+++s+++ in Sequence
33

44
A common use case is to start a listener after another listener has consumed all the records in a topic.
55
For example, you may want to load the contents of one or more compacted topics into memory before processing records from other topics.

spring-kafka-docs/src/main/antora/modules/ROOT/pages/retrytopic/topic-naming.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Retry topics and DLT are named by suffixing the main topic with a provided or de
55

66
Examples:
77

8-
"my-topic" +++->+++ "my-topic-retry-0", "my-topic-retry-1", ..., "my-topic-dlt"
8+
"my-topic" -> "my-topic-retry-0", "my-topic-retry-1", ..., "my-topic-dlt"
99

10-
"my-other-topic" +++->+++ "my-topic-myRetrySuffix-1000", "my-topic-myRetrySuffix-2000", ..., "my-topic-myDltSuffix"
10+
"my-other-topic" -> "my-topic-myRetrySuffix-1000", "my-topic-myRetrySuffix-2000", ..., "my-topic-myDltSuffix"
1111

1212
NOTE: The default behavior is to create separate retry topics for each attempt, appended with an index value: retry-0, retry-1, ..., retry-n.
1313
Therefore, by default the number of retry topics is the configured `maxAttempts` minus 1.

0 commit comments

Comments
 (0)