Merge pull request #3619 from wrobell/rabbitmq-streams-doc-protocol-fix

Fix RabbitMQ Streams protocol documentation
This commit is contained in:
Michael Klishin 2021-10-28 22:35:35 +03:00 committed by GitHub
commit 022d6636e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -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
```