diff --git a/src/commands/workspaceCommand.ts b/src/commands/workspaceCommand.ts index e4943dc7..82ff73eb 100644 --- a/src/commands/workspaceCommand.ts +++ b/src/commands/workspaceCommand.ts @@ -177,8 +177,9 @@ export function getConnectionForUri(uri: Uri) { export async function pickConnection(uri: Uri) { const server = getServerForUri(uri); + const servers = isPython(uri) ? getInsightsServers() : getServers(); - let picked = await window.showQuickPick(["(none)", ...getServers()], { + let picked = await window.showQuickPick(["(none)", ...servers], { title: "Choose a connection", placeHolder: server, });