diff --git a/common/client-core/src/client/real_messages_control/mod.rs b/common/client-core/src/client/real_messages_control/mod.rs index 32c913006d..c4c0a67e10 100644 --- a/common/client-core/src/client/real_messages_control/mod.rs +++ b/common/client-core/src/client/real_messages_control/mod.rs @@ -224,6 +224,6 @@ impl RealMessagesController { debug!("The reply controller has finished execution!"); }); - ack_control.start_with_shutdown(shutdown, packet_type); + // ack_control.start_with_shutdown(shutdown, packet_type); } } diff --git a/common/client-libs/gateway-client/src/packet_router.rs b/common/client-libs/gateway-client/src/packet_router.rs index 385d8bf333..838974383c 100644 --- a/common/client-libs/gateway-client/src/packet_router.rs +++ b/common/client-libs/gateway-client/src/packet_router.rs @@ -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(()) } }