mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
Reduce noisy IDE integration error message in standalone terminal (#6006)
This commit is contained in:
@@ -79,8 +79,6 @@ export class IdeClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async connect(): Promise<void> {
|
async connect(): Promise<void> {
|
||||||
this.setState(IDEConnectionStatus.Connecting);
|
|
||||||
|
|
||||||
if (!this.currentIde || !this.currentIdeDisplayName) {
|
if (!this.currentIde || !this.currentIdeDisplayName) {
|
||||||
this.setState(
|
this.setState(
|
||||||
IDEConnectionStatus.Disconnected,
|
IDEConnectionStatus.Disconnected,
|
||||||
@@ -89,11 +87,13 @@ export class IdeClient {
|
|||||||
)
|
)
|
||||||
.map((ide) => getIdeDisplayName(ide))
|
.map((ide) => getIdeDisplayName(ide))
|
||||||
.join(', ')}`,
|
.join(', ')}`,
|
||||||
true,
|
false,
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.setState(IDEConnectionStatus.Connecting);
|
||||||
|
|
||||||
if (!this.validateWorkspacePath()) {
|
if (!this.validateWorkspacePath()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user