Skip to content

Fix RabbitMQ Streams protocol documentation #3619

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions deps/rabbitmq_stream/docs/PROTOCOL.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
```

Expand Down