increasted timeout and buffer

main
Justin Barnett 2025-03-30 16:01:17 -04:00
parent 8d86cada1c
commit 4f5a6a0014
1 changed files with 2 additions and 2 deletions

View File

@ -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"