Merge pull request #11 from justinpbarnett/bug/timeout-and-disconnect

significantly increased timout and buffer size
main
Justin P Barnett 2025-03-19 10:15:02 -04:00 committed by GitHub
commit f200fcb67d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 = 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"