Skip to content

Commit 93588b3

Browse files
authored
Fixes #301 by lowering max connections to 16 so max mem usage will be 8GB. (#314)
1 parent 7e6a4fe commit 93588b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nvflare/fuel/hci/server/hci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
from .reg import ServerCommandRegister
2525

26-
MAX_ADMIN_CONNECTIONS = 128
26+
MAX_ADMIN_CONNECTIONS = 16
2727

2828

2929
class _MsgHandler(socketserver.BaseRequestHandler):

0 commit comments

Comments
 (0)