From 4e857336d0cd17e2e4b88b5154cd0187880164ba Mon Sep 17 00:00:00 2001 From: Zane Schepke Date: Fri, 13 Sep 2024 12:19:02 -0400 Subject: [PATCH] try disable disarm --- common/client-core/src/client/base_client/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/client-core/src/client/base_client/mod.rs b/common/client-core/src/client/base_client/mod.rs index 0579cc12a8..9ea8fc27e4 100644 --- a/common/client-core/src/client/base_client/mod.rs +++ b/common/client-core/src/client/base_client/mod.rs @@ -430,7 +430,7 @@ where Err(ClientCoreError::CustomGatewaySelectionExpected) } else { // and make sure to invalidate the task client so we wouldn't cause premature shutdown - shutdown.disarm(); + //shutdown.disarm(); custom_gateway_transceiver.set_packet_router(packet_router)?; Ok(custom_gateway_transceiver) }; @@ -536,7 +536,7 @@ where if topology_config.disable_refreshing { // if we're not spawning the refresher, don't cause shutdown immediately info!("The topology refesher is not going to be started"); - shutdown.disarm(); + //shutdown.disarm(); } else { // don't spawn the refresher if we don't want to be refreshing the topology. // only use the initial values obtained