提交 812c63a2 编写于 作者: D Daniel Imms

Dispose queue before deleting it

上级 039d62d8
......@@ -203,7 +203,10 @@ export class BackupFileService implements IBackupFileService {
const key = resource.toString();
if (!this.ioOperationQueues[key]) {
const queue = new Queue<void>();
queue.onFinished(() => delete this.ioOperationQueues[key]);
queue.onFinished(() => {
queue.dispose();
delete this.ioOperationQueues[key];
});
this.ioOperationQueues[key] = queue;
}
return this.ioOperationQueues[key];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册