Skip to content

Commit 8301882

Browse files
authored
MINOR: Correct configuration property names in the Kafka Connect ACL tables (#22847)
The Kafka Connect ACL tables referenced two invalid configuration property names. The Source connector table used the connector-level `offsets.storage.topic` name for the worker fallback, whose actual property is `offset.storage.topic`. The Sink connector table also misspelled the connector client override `consumer.override.group.id` as `consumer.overrides.group.id`. This change corrects both references so that the ACL guidance matches the worker configuration and connector override names used elsewhere in the guide and in the Connect configuration classes. No tests were run because this is a documentation-only change. `git diff --check` completed successfully. Reviewers: Andrew Schofield <aschofield@confluent.io>
1 parent 678c0e0 commit 8301882

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/kafka-connect/user-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ Offsets topic used by the connector
618618

619619
This is the value of the `offsets.storage.topic` property in the connector’s configuration if provided,
620620

621-
or the value of the `offsets.storage.topic` property in the worker’s configuration if not.
621+
or the value of the `offset.storage.topic` property in the worker’s configuration if not.
622622
</td>
623623
<td>
624624

@@ -686,7 +686,7 @@ the name of the connector
686686

687687
or the value of `consumer.group.id` if present in the Connect configuration,
688688

689-
or the value of `consumer.overrides.group.id` if present in the Connector configuration
689+
or the value of `consumer.override.group.id` if present in the Connector configuration
690690
</td><td> </td></tr>
691691
<tr><td>Read</td><td>Topic</td><td>sink topic(s) that the connector will consume from</td><td>
692692

0 commit comments

Comments
 (0)