@andersbakken/fisk 3.4.100 → 3.4.103

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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # fisk
2
- Fisk, a distributed compile system
2
+ Fisk, a nice distributed compile system
3
3
 
4
4
  If you get:
5
5
 
@@ -464,9 +464,6 @@ client.on("getEnvironments", message => {
464
464
  console.log("Got finish", env);
465
465
  exec("tar xf '" + file + "'", { cwd: dir }).
466
466
  then(() => {
467
- console.log("Checking that the environment runs", path.join(dir, "bin", "true"));
468
- return exec(`"${path.join(dir, "bin", "true")}"`, { cwd: dir });
469
- }).then(() => {
470
467
  const json = path.join(dir, "environment.json");
471
468
  console.log("Writing json file", json);
472
469
  return fs.writeFile(json, JSON.stringify({ hash: env, created: new Date().toString() }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andersbakken/fisk",
3
- "version": "3.4.100",
3
+ "version": "3.4.103",
4
4
  "description": "Fisk, a distributed compile system",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -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) => {