You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO handle this better later, see broadcast() documentation for details.
165
-
tokio::select! {
166
-
_ = killswitch => {
167
-
// WARNING: in the client implementation, this may happen while waiting on a response, resulting in us rejecting a message we actually passed through successfully
168
-
// this would only happen if we actually call publish_event_to_http(), if the killswitch was toggled before reaching here we will always do the killswitch branch.
169
-
tracing::warn!("Got message from broker but did not send it over HTTP, the message will be rejected.");
// TODO handle this better later, see broadcast() documentation for details.
167
+
tokio::select! {
168
+
_ = killswitch => {
169
+
// WARNING: in the client implementation, this may happen while waiting on a response, resulting in us rejecting a message we actually passed through successfully
170
+
// this would only happen if we actually call publish_event_to_http(), if the killswitch was toggled before reaching here we will always do the killswitch branch.
171
+
tracing::warn!("Got message from broker but did not send it over HTTP, the message will be rejected.");
0 commit comments