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 86a5877 commit 8346715Copy full SHA for 8346715
crates/outbound-mqtt/src/lib.rs
@@ -108,7 +108,7 @@ impl v2::HostConnection for OutboundMqtt {
108
match (qos, event) {
109
(QoS::AtMostOnce, Event::Outgoing(Outgoing::Publish(_)))
110
| (QoS::AtLeastOnce, Event::Incoming(Incoming::PubAck(_)))
111
- | (QoS::ExactlyOnce, Event::Outgoing(Outgoing::PubComp(_))) => break,
+ | (QoS::ExactlyOnce, Event::Incoming(Incoming::PubComp(_))) => break,
112
113
(_, _) => continue,
114
}
0 commit comments