Merge 'chakrit/master' fixing #97 process not exiting

master
Glenn Murray 2014-03-04 15:46:06 +11:00
commit c80c0e8276
1 changed files with 3 additions and 0 deletions

View File

@ -1016,6 +1016,9 @@ RotatingFileStream.prototype._setupNextRot = function () {
this.timeout = setTimeout(
function () { self.rotate(); },
this.rotAt - Date.now());
if (typeof this.timeout.unref === 'function') {
this.timeout.unref();
}
}
RotatingFileStream.prototype._nextRotTime = function _nextRotTime(first) {