From a949a4de18d38445a0c02de2dc8f5664b06d41fb Mon Sep 17 00:00:00 2001 From: travertexg Date: Tue, 10 Jun 2025 07:21:53 +0000 Subject: [PATCH] refactor: Increase timeout for core plugin search --- src/core/file-search/match/coreplugin-match.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file-search/match/coreplugin-match.ts b/src/core/file-search/match/coreplugin-match.ts index d32e955..809ecde 100644 --- a/src/core/file-search/match/coreplugin-match.ts +++ b/src/core/file-search/match/coreplugin-match.ts @@ -40,7 +40,7 @@ export async function matchSearchUsingCorePlugin( // @ts-ignore const results = (view as any).dom?.resultDomLookup; resolve(results || new Map()); - }, 5000) + }, 10000) }); if (!searchResultsMap || searchResultsMap.size === 0) {