summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <klishinm@vmware.com>2021-10-28 22:35:35 +0300
committerGitHub <noreply@github.com>2021-10-28 22:35:35 +0300
commit022d6636e7408d3386f692b2c5baa4ff9e0ff1ca (patch)
treeb14d5ce16ffe9b3ba91a5546f55aa36729b4f8e3
parentb4eb5e2cfd7f85a1681617dc489dd347fa9aac72 (diff)
parent57ff5dbf4a530e871165787c4870b10303db38ad (diff)
downloadrabbitmq-server-git-022d6636e7408d3386f692b2c5baa4ff9e0ff1ca.tar.gz
Merge pull request #3619 from wrobell/rabbitmq-streams-doc-protocol-fix
Fix RabbitMQ Streams protocol documentation
-rw-r--r--deps/rabbitmq_stream/docs/PROTOCOL.adoc6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/rabbitmq_stream/docs/PROTOCOL.adoc b/deps/rabbitmq_stream/docs/PROTOCOL.adoc
index bbe12d04ab..c286aa30a6 100644
--- a/deps/rabbitmq_stream/docs/PROTOCOL.adoc
+++ b/deps/rabbitmq_stream/docs/PROTOCOL.adoc
@@ -227,7 +227,7 @@ DeclarePublisherRequest => Key Version CorrelationId PublisherId [PublisherRefer
PublisherReference => string // max 256 characters
Stream => string
-DeclarePublisherResponse => Key Version CorrelationId ResponseCode PublisherId
+DeclarePublisherResponse => Key Version CorrelationId ResponseCode
Key => uint16 // 1
Version => uint16
CorrelationId => uint32
@@ -491,12 +491,14 @@ SaslHandshakeRequest => Key Version CorrelationId Mechanism
Key => uint16 // 18
Version => uint16
CorrelationId => uint32
+ Mechanism => string
-SaslHandshakeResponse => Key Version CorrelationId ResponseCode [Mechanism]
+SaslHandshakeResponse => Key Version CorrelationId ResponseCode [Mechanisms]
Key => uint16 // 18
Version => uint16
CorrelationId => uint32
ResponseCode => uint16
+ Mechanisms => [Mechanism]
Mechanism => string
```