You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ty...@apache.org on 2023/03/02 07:58:48 UTC

[incubator-seatunnel] branch dev updated: [Hotfix][Connector-V2][Kafka] Fix config option error (#4244)

This is an automated email from the ASF dual-hosted git repository.

tyrantlucifer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 60d0aaaa6 [Hotfix][Connector-V2][Kafka] Fix config option error (#4244)
60d0aaaa6 is described below

commit 60d0aaaa65c598d23e3ae0407545245aa508c36e
Author: lightzhao <40...@users.noreply.github.com>
AuthorDate: Thu Mar 2 15:58:41 2023 +0800

    [Hotfix][Connector-V2][Kafka] Fix config option error (#4244)
    
    Co-authored-by: lightzhao <zh...@gmail.com>
---
 docs/en/connector-v2/sink/Kafka.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/en/connector-v2/sink/Kafka.md b/docs/en/connector-v2/sink/Kafka.md
index 433d1fc6b..e9674727b 100644
--- a/docs/en/connector-v2/sink/Kafka.md
+++ b/docs/en/connector-v2/sink/Kafka.md
@@ -19,7 +19,7 @@ By default, we will use 2pc to guarantee the message is sent to kafka exactly on
 | topic                | string | yes      | -             |
 | bootstrap.servers    | string | yes      | -             |
 | kafka.config         | map    | no       | -             |
-| semantic             | string | no       | NON           |
+| semantics            | string | no       | NON           |
 | partition_key_fields | array  | no       | -             |
 | partition            | int    | no       | -             |
 | assign_partitions    | array  | no       | -             |
@@ -57,7 +57,7 @@ In addition to the above parameters that must be specified by the `Kafka produce
 
 The way to specify the parameter is to add the prefix `kafka.` to the original parameter name. For example, the way to specify `request.timeout.ms` is: `kafka.request.timeout.ms = 60000` . If these non-essential parameters are not specified, they will use the default values given in the official Kafka documentation.
 
-### semantic [string]
+### semantics [string]
 
 Semantics that can be chosen EXACTLY_ONCE/AT_LEAST_ONCE/NON, default NON.