Skip to content

Commit 7b13eb2

Browse files
authored
Enable keepalive: true for requests to reduce new connections (#276)
1 parent 4cce1a2 commit 7b13eb2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/services/mcws/MCWSClient.js

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ class MCWSClient {
5959

6060
delete options.params;
6161
}
62+
63+
// Keepalive
64+
options.keepalive = true;
6265

6366
try {
6467
response = await fetch(url, options);

0 commit comments

Comments
 (0)