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> {
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue