explorer: limits test

This commit is contained in:
DH
2025-08-28 23:45:46 +03:00
parent 340852d2ff
commit 50d5cce771
2 changed files with 3 additions and 3 deletions

View File

@@ -192,7 +192,7 @@ export class Extension implements IComponentImpl {
this.send({ jsonrpc: "2.0", method, params, id });
const timestamp = Date.now();
const deadline = timestamp + 10 * 1000;
const deadline = timestamp + 60 * 1000;
if (this.responseWatchdog == null) {
this.responseWatchdog = setTimeout(() => {
this.responseWatchdogEntry();

View File

@@ -70,8 +70,8 @@ export class ExplorerComponent implements IDisposable {
const notDescribedLocations: string[] = [];
while (workList.length > 0) {
notDescribedLocations.push(...await this.tryDescribe(workList.slice(0, 5), describers));
workList = workList.slice(5);
notDescribedLocations.push(...await this.tryDescribe(workList.slice(0, 1), describers));
workList = workList.slice(1);
}
if (abortSignal.aborted) {