From 93f2961e58d40462d9d967a45c04a926aeb1a6ad Mon Sep 17 00:00:00 2001 From: Justin Barnett Date: Wed, 19 Mar 2025 10:12:19 -0400 Subject: [PATCH] significantly increased timout and buffer size --- Python/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/config.py b/Python/config.py index c07459b..0f4adab 100644 --- a/Python/config.py +++ b/Python/config.py @@ -15,8 +15,8 @@ class ServerConfig: mcp_port: int = 6500 # Connection settings - connection_timeout: float = 15.0 - buffer_size: int = 32768 + connection_timeout: float = 300.0 # 5 minutes timeout + buffer_size: int = 1024 * 1024 # 1MB buffer for localhost # Logging settings log_level: str = "INFO"