mirror of
https://github.com/RPCSX/rpcsx-ui.git
synced 2026-01-31 01:05:23 +01:00
explorer: limits test
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user