From 5405049f306b2d4bcf77dac5f9ee42f610b5461a Mon Sep 17 00:00:00 2001 From: Omer Yacine Date: Thu, 12 Sep 2024 18:34:09 +0300 Subject: [PATCH] is this the ci issue very weird issue related to tokio runtime breaking for some reason --- mm2src/coins/utxo/rpc_clients/electrum_rpc/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm2src/coins/utxo/rpc_clients/electrum_rpc/client.rs b/mm2src/coins/utxo/rpc_clients/electrum_rpc/client.rs index f321e7dc65..b88640292d 100644 --- a/mm2src/coins/utxo/rpc_clients/electrum_rpc/client.rs +++ b/mm2src/coins/utxo/rpc_clients/electrum_rpc/client.rs @@ -355,7 +355,7 @@ impl ElectrumClient { .electrum_request(json, request.rpc_id(), ELECTRUM_REQUEST_TIMEOUT) .await?; // Inform the connection manager that the connection was queried and no longer needed now. - self.connection_manager.not_needed(&to_addr).await; + // self.connection_manager.not_needed(&to_addr).await; Ok(response) }