restore 3min rule, #16098

This commit is contained in:
Johannes Rieken
2016-11-28 12:36:19 +01:00
parent 0402a630cc
commit 976d2a0e26

View File

@@ -84,7 +84,7 @@ export class MainThreadDocuments extends MainThreadDocumentsShape {
}
}));
const handle = setInterval(() => this._runDocumentCleanup(), 1000 * 15);
const handle = setInterval(() => this._runDocumentCleanup(), 1000 * 60 * 3);
this._toDispose.push({ dispose() { clearInterval(handle); } });
this._modelToDisposeMap = Object.create(null);