This is an automated email from the ASF dual-hosted git repository.
mimaison pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 540f638a844 MINOR: Fix typo in TransactionContext javadoc (#22321)
540f638a844 is described below
commit 540f638a8447c3b6aa569a4ba3974ba130377625
Author: RonGamzu <[email protected]>
AuthorDate: Wed May 20 11:28:20 2026 +0300
MINOR: Fix typo in TransactionContext javadoc (#22321)
Reviewers: Mickael Maison <[email protected]>
---
.../main/java/org/apache/kafka/connect/source/TransactionContext.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/connect/api/src/main/java/org/apache/kafka/connect/source/TransactionContext.java
b/connect/api/src/main/java/org/apache/kafka/connect/source/TransactionContext.java
index 4c3c00528ac..7fd5930a0fa 100644
---
a/connect/api/src/main/java/org/apache/kafka/connect/source/TransactionContext.java
+++
b/connect/api/src/main/java/org/apache/kafka/connect/source/TransactionContext.java
@@ -43,7 +43,7 @@ public interface TransactionContext {
/**
* Requests a transaction abort after the next batch of records from
{@link SourceTask#poll()}. All of
* the records in that transaction will be discarded and will not appear
in a committed transaction.
- * However, offsets for that transaction will still be committed so than
the records in that transaction
+ * However, offsets for that transaction will still be committed so that
the records in that transaction
* are not reprocessed. If the data should instead be reprocessed, the
task should not invoke this method
* and should instead throw an exception.
*/