From 7776572f2c48cb75a32f6f5a6c8be89e9e592ff1 Mon Sep 17 00:00:00 2001 From: Godmode Galactus Date: Sat, 18 Mar 2023 15:15:35 +0100 Subject: [PATCH] Changing default TPU Pool size to 4 --- src/tpu_manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tpu_manager.rs b/src/tpu_manager.rs index 4d3ed485..10574d97 100644 --- a/src/tpu_manager.rs +++ b/src/tpu_manager.rs @@ -21,7 +21,7 @@ use tokio::sync::RwLock; pub type QuicTpuClient = TpuClient; pub type QuicConnectionCache = TpuConnectionCache; -const TPU_CONNECTION_CACHE_SIZE: usize = 8; +const TPU_CONNECTION_CACHE_SIZE: usize = 4; lazy_static::lazy_static! { static ref TPU_CONNECTION_RESET: IntCounter =