Fix #97 unref() the rotation timeout in RotatingFileStream.
The rotation `setTimeout` from `RotatingFileStream` will prevent the process from exiting. This fix simply `unref()` the timeout immediately after it is set.
This commit is contained in:
parent
27b679f243
commit
90360351b4
1 changed files with 3 additions and 0 deletions
|
@ -990,6 +990,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) {
|
||||
|
|
Loading…
Reference in a new issue