batch-cluster
Advanced tools
Comparing version 5.7.0 to 5.7.1
@@ -20,2 +20,6 @@ # Changelog | ||
## v5.7.1 | ||
- 📦 `BatchCluster.end()` should return a `Deferred<void>` | ||
## v5.7.0 | ||
@@ -26,2 +30,4 @@ | ||
- 🐞 Deflaked CI tests with longer timeouts and less aggressive `shutdown()` | ||
- 📦 Had to delete the macOS Travis tests. Travis has been terribly flaky, with | ||
unreproduceable spec failures. | ||
@@ -28,0 +34,0 @@ ## v5.6.8 |
@@ -59,3 +59,3 @@ /// <reference types="node" /> | ||
*/ | ||
end(gracefully?: boolean): Deferred<any>; | ||
end(gracefully?: boolean): Deferred<void>; | ||
/** | ||
@@ -62,0 +62,0 @@ * Submits `task` for processing by a `BatchProcess` instance |
@@ -209,3 +209,5 @@ "use strict"; | ||
.catch(function (err) { return _this.emitter.emit("endError", err); }); | ||
})).then(function () { return _this.emitter.emit("end"); })); | ||
})) | ||
.then(function () { return _this.emitter.emit("end"); }) | ||
.then(function () { return undefined; })); | ||
this._procs.length = 0; | ||
@@ -212,0 +214,0 @@ } |
{ | ||
"name": "batch-cluster", | ||
"version": "5.7.0", | ||
"version": "5.7.1", | ||
"description": "Manage a cluster of child processes", | ||
@@ -5,0 +5,0 @@ "main": "dist/BatchCluster.js", |
131848
2721