mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
child tasks must remove reference to parent on kill or else entangled parent-child tasks will not be gc'ed
This commit is contained in:
@@ -62,7 +62,9 @@ class Task extends Emitter {
|
|||||||
kill(cs) {
|
kill(cs) {
|
||||||
if (this.cs && !this.cs.isConfirmCallSession) this.logger.debug(`${this.name} is being killed`);
|
if (this.cs && !this.cs.isConfirmCallSession) this.logger.debug(`${this.name} is being killed`);
|
||||||
this._killInProgress = true;
|
this._killInProgress = true;
|
||||||
// no-op
|
|
||||||
|
/* remove reference to parent task or else entangled parent-child tasks will not be gc'ed */
|
||||||
|
setImmediate(() => this.parentTask = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user