Reduce noisy IDE integration error message in standalone terminal (#6006)
This commit is contained in:
parent
110e00178b
commit
4656f17524
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue