From 903d72fab3d499ef9604e5cc9f5c32df49fd1f3c Mon Sep 17 00:00:00 2001 From: Pu Chen Date: Wed, 27 Mar 2024 11:22:28 +0800 Subject: [PATCH] chore(doc): Correct the Kafka Connect REST API path in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bef2040..8d6bcad3 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ An example of configuration (file `connect-http-sink.json`): Then deploy the connector configuration against the Kafka Connect REST API with the following command: ```shell -curl -d @config/connect-http-sink.json -H "Content-Type: application/json" -X POST http://localhost:8083/connector +curl -d @config/connect-http-sink.json -H "Content-Type: application/json" -X POST http://localhost:8083/connectors ``` See the [configuration options](docs/sink-connector-config-options.rst) for details.