From 8558face53fb7904447fc4c90a7983ddcf10fc27 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Fri, 15 Dec 2023 10:35:01 +0100 Subject: [PATCH] fix https://github.com/microsoft/vscode-copilot/issues/3240 (#200933) --- src/vs/workbench/api/common/extHostChatAgents2.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vs/workbench/api/common/extHostChatAgents2.ts b/src/vs/workbench/api/common/extHostChatAgents2.ts index 6f91c8902fa..dd59212cbb0 100644 --- a/src/vs/workbench/api/common/extHostChatAgents2.ts +++ b/src/vs/workbench/api/common/extHostChatAgents2.ts @@ -70,7 +70,6 @@ export class ExtHostChatAgents2 implements ExtHostChatAgentsShape2 { const commandExecution = new DeferredPromise(); token.onCancellationRequested(() => commandExecution.complete()); - setTimeout(() => commandExecution.complete(), 10 * 1000); this._extHostChatProvider.allowListExtensionWhile(agent.extension.identifier, commandExecution.p); const slashCommand = request.command