mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
chore(vscode-ide-companion): add fixme comment for auth delay
This commit is contained in:
@@ -140,6 +140,8 @@ export class QwenConnectionHandler {
|
|||||||
try {
|
try {
|
||||||
// Let CLI handle authentication - it's the single source of truth
|
// Let CLI handle authentication - it's the single source of truth
|
||||||
await connection.authenticate(authMethod);
|
await connection.authenticate(authMethod);
|
||||||
|
// FIXME: @yiliang114 If there is no delay for a while, immediately executing
|
||||||
|
// newSession may cause the cli authorization jump to be triggered again
|
||||||
// Add a slight delay to ensure auth state is settled
|
// Add a slight delay to ensure auth state is settled
|
||||||
await new Promise((resolve) => setTimeout(resolve, 300));
|
await new Promise((resolve) => setTimeout(resolve, 300));
|
||||||
// Retry immediately after successful auth
|
// Retry immediately after successful auth
|
||||||
|
|||||||
Reference in New Issue
Block a user