mirror of https://github.com/nodejs/node.git
Stop watcher before calling .set() in Stream.prototype.resume
parent
127f17a0ea
commit
ec1589875c
|
@ -641,6 +641,7 @@ Stream.prototype.pause = function () {
|
|||
|
||||
Stream.prototype.resume = function () {
|
||||
if (this.fd === null) throw new Error('Cannot resume() closed Stream.');
|
||||
this._readWatcher.stop();
|
||||
this._readWatcher.set(this.fd, true, false);
|
||||
this._readWatcher.start();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue