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> { 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;
} }