Skip to content

Commit

Permalink
Fixes #301 by lowering max connections to 16 so max mem usage will be…
Browse files Browse the repository at this point in the history
… 8GB. (#314)
  • Loading branch information
nvidianz committed Mar 17, 2022
1 parent 7e6a4fe commit 93588b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvflare/fuel/hci/server/hci.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

from .reg import ServerCommandRegister

MAX_ADMIN_CONNECTIONS = 128
MAX_ADMIN_CONNECTIONS = 16


class _MsgHandler(socketserver.BaseRequestHandler):
Expand Down

0 comments on commit 93588b3

Please sign in to comment.