Skip to content

Commit

Permalink
try disable disarm
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneschepke committed Sep 13, 2024
1 parent b7baff1 commit 4e85733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/client-core/src/client/base_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
};
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 4e85733

Please sign in to comment.