We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6740f33 commit 607633aCopy full SHA for 607633a
src/commons.rs
@@ -51,8 +51,9 @@ pub enum SupportedProtocol {
51
/// Represents the inter-node and CLI tool communication protocol
52
/// (a.k.a. the Erlang distribution protocol)
53
Clustering,
54
- /// Represents both AMQP 1.0 and AMQP 0-9-1 because they share a listener
55
- #[serde(rename = "amqp")]
+ /// Represents both AMQP 1.0 and AMQP 0-9-1 because they share a listener.
+ /// Some API endpoints (e.g. auth attempts) return "amqp091" or "amqp10" specifically.
56
+ #[serde(rename = "amqp", alias = "amqp091", alias = "amqp10")]
57
AMQP,
58
/// Represents both AMQP 1.0 with TLS enabled and AMQP 0-9-1 with TLS enabled
59
#[serde(rename = "amqp/ssl")]
0 commit comments