Reduce noisy IDE integration error message in standalone terminal (#6006)

This commit is contained in:
Shreya Keshive 2025-08-11 15:57:56 -04:00 committed by GitHub
parent 110e00178b
commit 4656f17524
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -79,8 +79,6 @@ export class IdeClient {
}
async connect(): Promise<void> {
this.setState(IDEConnectionStatus.Connecting);
if (!this.currentIde || !this.currentIdeDisplayName) {
this.setState(
IDEConnectionStatus.Disconnected,
@ -89,11 +87,13 @@ export class IdeClient {
)
.map((ide) => getIdeDisplayName(ide))
.join(', ')}`,
true,
false,
);
return;
}
this.setState(IDEConnectionStatus.Connecting);
if (!this.validateWorkspacePath()) {
return;
}