mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-28 23:58:23 +01:00
fix: raise chat agent execution timeout (#195575)
This commit is contained in:
@@ -63,7 +63,7 @@ export class ExtHostChatAgents2 implements ExtHostChatAgentsShape2 {
|
||||
|
||||
const commandExecution = new DeferredPromise<void>();
|
||||
token.onCancellationRequested(() => commandExecution.complete());
|
||||
setTimeout(() => commandExecution.complete(), 3 * 1000);
|
||||
setTimeout(() => commandExecution.complete(), 10 * 1000);
|
||||
this._extHostChatProvider.allowListExtensionWhile(agent.extension.identifier, commandExecution.p);
|
||||
|
||||
const slashCommand = request.command
|
||||
|
||||
Reference in New Issue
Block a user