From 4f5a6a0014803fa2e150b38e24d56b37e42d0bea Mon Sep 17 00:00:00 2001 From: Justin Barnett Date: Sun, 30 Mar 2025 16:01:17 -0400 Subject: [PATCH] increasted timeout and buffer --- Python/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/config.py b/Python/config.py index 0f4adab..58f6f84 100644 --- a/Python/config.py +++ b/Python/config.py @@ -15,8 +15,8 @@ class ServerConfig: mcp_port: int = 6500 # Connection settings - connection_timeout: float = 300.0 # 5 minutes timeout - buffer_size: int = 1024 * 1024 # 1MB buffer for localhost + connection_timeout: float = 86400.0 # 24 hours timeout + buffer_size: int = 16 * 1024 * 1024 # 16MB buffer # Logging settings log_level: str = "INFO"