|
@@ -176,7 +176,7 @@ class KernelFutureHandler extends DisposableDelegate implements Kernel.IFuture {
|
|
|
if (!this._testFlag(Private.KernelFutureFlag.GotReply)) {
|
|
|
status.push('reply');
|
|
|
}
|
|
|
- console.warn(`*************** DISPOSED BEFORE DONE: K${this._kernel.id.slice(0, 6)} missing ${status.join(' ')}`);
|
|
|
+ console.warn(`*************** DISPOSED BEFORE DONE: K${this._kernel.id.slice(0, 6)} M${this._msg.header.msg_id.slice(0, 6)} missing ${status.join(' ')}`);
|
|
|
}
|
|
|
super.dispose();
|
|
|
}
|
|
@@ -229,9 +229,9 @@ class KernelFutureHandler extends DisposableDelegate implements Kernel.IFuture {
|
|
|
}
|
|
|
|
|
|
private _handleDone(): void {
|
|
|
- log(`JS KERNEL: M${this.msg.header.msg_id.slice(0, 6)} future done`);
|
|
|
+ log(`JS KERNEL: K${this._kernel.id.slice(0, 6)} M${this.msg.header.msg_id.slice(0, 6)} future done`);
|
|
|
if (this._testFlag(Private.KernelFutureFlag.IsDone)) {
|
|
|
- log(`JS KERNEL: M${this.msg.header.msg_id.slice(0, 6)} actually already done`);
|
|
|
+ log(`JS KERNEL: K${this._kernel.id.slice(0, 6)} M${this.msg.header.msg_id.slice(0, 6)} actually already done`);
|
|
|
return;
|
|
|
}
|
|
|
this._setFlag(Private.KernelFutureFlag.IsDone);
|