This is an automated email from the ASF dual-hosted git repository.
technoboy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new e6996b86396 [improve][doc] fix error param and config in
io-rabbitmq-sink.md (#15499)
e6996b86396 is described below
commit e6996b863960dfce8165bfe2aaf7b84a8f4a5ea4
Author: 704237006 <[email protected]>
AuthorDate: Sat May 14 09:48:43 2022 +0800
[improve][doc] fix error param and config in io-rabbitmq-sink.md (#15499)
---
site2/docs/io-rabbitmq-sink.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/site2/docs/io-rabbitmq-sink.md b/site2/docs/io-rabbitmq-sink.md
index 5112dafe4b5..47f188459a1 100644
--- a/site2/docs/io-rabbitmq-sink.md
+++ b/site2/docs/io-rabbitmq-sink.md
@@ -30,7 +30,7 @@ The configuration of the RabbitMQ sink connector has the
following properties.
| `handshakeTimeout` | int|false | 10000 | The timeout of AMQP0-9-1 protocol
handshake in milliseconds. |
| `requestedHeartbeat` | int|false | 60 | The exchange to publish messages. |
| `exchangeName` | String|true | " " (empty string) | The maximum number of
messages that the server delivers.<br><br> 0 means unlimited. |
-| `prefetchGlobal` |String|true | " " (empty string) |The routing key used to
publish messages. |
+| `routingKey` |String|true | " " (empty string) |The routing key used to
publish messages. |
### Example
@@ -66,7 +66,7 @@ Before using the RabbitMQ sink connector, you need to create
a configuration fil
configs:
host: "localhost"
port: 5672
- virtualHost: "/",
+ virtualHost: "/"
username: "guest"
password: "guest"
queueName: "test-queue"