Skip to content

Commit b59182c

Browse files
committed
also end the task on 'close' and 'finish'
1 parent 01f5d00 commit b59182c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/runTask.js

+6
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ module.exports = function (task, taskName, taskTimeout, done) {
6767
r.once('end', function () {
6868
finish(streamError, 'stream');
6969
});
70+
r.once('close', function () {
71+
finish(streamError, 'stream');
72+
});
73+
r.once('finish', function () {
74+
finish(streamError, 'stream');
75+
});
7076

7177
} else if (task.length === 0) {
7278
// synchronous, function took in no parameters

0 commit comments

Comments
 (0)