Naively comment out stuff

This commit is contained in:
durch
2023-09-06 19:06:22 +02:00
parent 8d2e8b3d26
commit ea271d720d
2 changed files with 7 additions and 7 deletions
@@ -224,6 +224,6 @@ impl RealMessagesController<OsRng> {
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() {
trace!("routing acks");
if let Err(err) = self.ack_sender.unbounded_send(received_acks) {
error!("failed to send ack: {err}");
};
}
// if !received_acks.is_empty() {
// trace!("routing acks");
// if let Err(err) = self.ack_sender.unbounded_send(received_acks) {
// error!("failed to send ack: {err}");
// };
// }
Ok(())
}
}