From 1f1b659717bdb09f60d7694016a8a83f86358855 Mon Sep 17 00:00:00 2001 From: Domenico De Guglielmo Date: Wed, 7 Feb 2024 13:46:59 +0100 Subject: [PATCH] 32->128 for client_tx_channel and client_rx_channel --- dht-cache/src/domocache.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dht-cache/src/domocache.rs b/dht-cache/src/domocache.rs index eb17aa7..c33b905 100644 --- a/dht-cache/src/domocache.rs +++ b/dht-cache/src/domocache.rs @@ -570,7 +570,7 @@ impl DomoCache { let peer_id = swarm.local_peer_id().to_string(); - let (client_tx_channel, client_rx_channel) = mpsc::channel::(32); + let (client_tx_channel, client_rx_channel) = mpsc::channel::(128); let send_cache_state_timer: tokio::time::Instant = tokio::time::Instant::now() + Duration::from_secs(u64::from(SEND_CACHE_HASH_PERIOD));