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 857358b95 [Improve][Doc] Update Kafka.md (#2863)
857358b95 is described below
commit 857358b958d22897ecaa39581909c5bd039f6e3d
Author: TaoZex <[email protected]>
AuthorDate: Sat Sep 24 17:12:22 2022 +0800
[Improve][Doc] Update Kafka.md (#2863)
The parameter in sink should be topics, not topic
---
docs/en/connector/sink/Kafka.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/en/connector/sink/Kafka.md b/docs/en/connector/sink/Kafka.md
index 5d8535a5e..0e225cf3d 100644
--- a/docs/en/connector/sink/Kafka.md
+++ b/docs/en/connector/sink/Kafka.md
@@ -58,7 +58,7 @@ Sink plugin common parameters, please refer to [Sink
Plugin](common-options.md)
```bash
kafka {
- topic = "seatunnel"
+ topics = "seatunnel"
producer.bootstrap.servers = "localhost:9092"
}
```