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

Commit 7926349

Browse files
author
Alan Shaw
authored
perf: lower connection manager limits (#1926)
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent dcb453a commit 7926349

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/core/runtime/config-browser.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ module.exports = () => ({
2828
],
2929
Swarm: {
3030
ConnMgr: {
31-
LowWater: 600,
32-
HighWater: 900
31+
LowWater: 200,
32+
HighWater: 500
3333
}
3434
}
3535
})

src/core/runtime/config-nodejs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ module.exports = () => ({
4141
],
4242
Swarm: {
4343
ConnMgr: {
44-
LowWater: 600,
45-
HighWater: 900
44+
LowWater: 200,
45+
HighWater: 500
4646
}
4747
}
4848
})

0 commit comments

Comments
 (0)