mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
fix(vscode-ide-companion/session): improve timeout configuration for different methods
Extend timeout duration to 2 minutes for both session_prompt and initialize methods to prevent timeouts during longer operations. Default timeout remains at 60 seconds for other methods. This change improves reliability of session management by providing adequate time for initialization and prompt operations to complete.
This commit is contained in:
@@ -57,13 +57,3 @@ export function handleAuthenticateUpdate(
|
||||
authNotificationDisposable = null;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Dismiss the authentication notification if it's currently shown
|
||||
*/
|
||||
export function dismissAuthenticateUpdate(): void {
|
||||
if (authNotificationDisposable) {
|
||||
authNotificationDisposable.dispose();
|
||||
authNotificationDisposable = null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user