Compare commits

...

1 Commits

Author SHA1 Message Date
durch ea271d720d Naively comment out stuff 2023-09-06 19:06:22 +02:00
2 changed files with 7 additions and 7 deletions
@@ -224,6 +224,6 @@ impl RealMessagesController<OsRng> {
debug!("The reply controller has finished execution!"); debug!("The reply controller has finished execution!");
}); });
ack_control.start_with_shutdown(shutdown, packet_type); // ack_control.start_with_shutdown(shutdown, packet_type);
} }
} }
@@ -102,12 +102,12 @@ impl PacketRouter {
} }
} }
if !received_acks.is_empty() { // if !received_acks.is_empty() {
trace!("routing acks"); // trace!("routing acks");
if let Err(err) = self.ack_sender.unbounded_send(received_acks) { // if let Err(err) = self.ack_sender.unbounded_send(received_acks) {
error!("failed to send ack: {err}"); // error!("failed to send ack: {err}");
}; // };
} // }
Ok(()) Ok(())
} }
} }