Skip to content

Commit

Permalink
fix: raise chat agent execution timeout (microsoft#195575)
Browse files Browse the repository at this point in the history
  • Loading branch information
joyceerhl committed Oct 13, 2023
1 parent baafa5d commit 4efeb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/api/common/extHostChatAgents2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4efeb37

Please sign in to comment.