We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35c07be commit c1e3885Copy full SHA for c1e3885
src/api/index.ts
@@ -233,7 +233,7 @@ export class AtelierAPI {
233
} = getResolvedConnectionSpec(serverName, config("intersystems.servers", workspaceFolderName).get(serverName));
234
this._config = {
235
serverName,
236
- active: !inactiveServerIds.has(serverName),
+ active: this.externalServer ? !inactiveServerIds.has(serverName) : conn.active,
237
apiVersion: workspaceState.get(this.configName.toLowerCase() + ":apiVersion", DEFAULT_API_VERSION),
238
serverVersion: workspaceState.get(this.configName.toLowerCase() + ":serverVersion", DEFAULT_SERVER_VERSION),
239
https: scheme === "https",
0 commit comments