@andersbakken/fisk 3.4.98 → 3.4.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andersbakken/fisk",
3
- "version": "3.4.98",
3
+ "version": "3.4.102",
4
4
  "description": "Fisk, a distributed compile system",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -30,7 +30,7 @@ let wolBuilders = {};
30
30
  }
31
31
  });
32
32
 
33
- const clientMinimumVersion = "3.1.39";
33
+ const clientMinimumVersion = "3.4.96";
34
34
  const serverStartTime = Date.now();
35
35
  process.on("unhandledRejection", (reason, p) => {
36
36
  console.log("Unhandled Rejection at: Promise", p, "reason:", reason.stack);
@@ -107,7 +107,7 @@ class Server extends EventEmitter {
107
107
  this.server = http.createServer(this.app);
108
108
  this.ws = new WebSocket.Server({ noServer: true });
109
109
  const port = this.option.int("port", 8097);
110
- this.server.listen({ port: port, backlog: this.option.int("backlog", 50), host: "0.0.0.0" });
110
+ this.server.listen({ port: port, backlog: this.option.int("backlog", 1024), host: "0.0.0.0" });
111
111
 
112
112
  this.server.on("upgrade", (req, socket, head) => {
113
113
  this.ws.handleUpgrade(req, socket, head, (ws) => {