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.
2 parents 57610ec + 8346715 commit a072c1fCopy full SHA for a072c1f
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