Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
perf: lower connection manager limits (#1926)
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
  • Loading branch information
Alan Shaw authored Mar 14, 2019
1 parent dcb453a commit 7926349
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/core/runtime/config-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ module.exports = () => ({
],
Swarm: {
ConnMgr: {
LowWater: 600,
HighWater: 900
LowWater: 200,
HighWater: 500
}
}
})
4 changes: 2 additions & 2 deletions src/core/runtime/config-nodejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ module.exports = () => ({
],
Swarm: {
ConnMgr: {
LowWater: 600,
HighWater: 900
LowWater: 200,
HighWater: 500
}
}
})

0 comments on commit 7926349

Please sign in to comment.