Skip to content

Commit 93f2961

Browse files
significantly increased timout and buffer size
1 parent 73ea045 commit 93f2961

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class ServerConfig:
1515
mcp_port: int = 6500
1616

1717
# Connection settings
18-
connection_timeout: float = 15.0
19-
buffer_size: int = 32768
18+
connection_timeout: float = 300.0 # 5 minutes timeout
19+
buffer_size: int = 1024 * 1024 # 1MB buffer for localhost
2020

2121
# Logging settings
2222
log_level: str = "INFO"

0 commit comments

Comments
 (0)