Skip to content

Commit

Permalink
Merge branch 'dev' into 1.6DocUpdates
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmel authored Jul 2, 2024
2 parents 021f4f9 + e06b93f commit fbde768
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,12 @@ Set the following from the Advanced properties if necessary:

![connecttoinsights](https://github.com/KxSystems/kx-vscode/blob/main/img/insightsconnectionadvanced.png?raw=true)

<<<<<<< 1.6DocUpdates
!!!note "For kdb Insights Enterprise Free Trial instances"
The realm is configured as `insights-{URL}` where {URL} is the 10 digit code in the trial URL. For example: if your trial url is https://fstc83yi5b.ft1.cld.kx.com/ the realm is `insights-fstc83yi5b`.
=======
**Note** For kdb Insights Enterprise Free Trial instances the realm is configured as `insights-{URL}` where {URL} is the 10 digit code in the trial URL. For example: if your trial url is https://fstc83yi5b.ft1.cld.kx.com/ the realm should be `insights-fstc83yi5b`.
>>>>>>> dev
1. Click **Create Connection** and the **kdb Insights Enterprise** connection appears under **CONNECTIONS** in the primary sidebar.

Expand Down
2 changes: 1 addition & 1 deletion src/services/resultsPanelProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class KdbResultsViewProvider implements WebviewViewProvider {
this._colorTheme = window.activeColorTheme;
this.updateResults(this._results);
});
// this.resolveWebviewView(webviewView);
ext.isResultsTabVisible = true;
}

/* istanbul ignore next */
Expand Down
4 changes: 2 additions & 2 deletions test/suite/commands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ describe("dataSourceCommand2", () => {
dummyFileContent.dataSource.selectedType = DataSourceTypes.API;
getMetaStub.resolves(dummyMeta);
getDataInsightsStub.resolves({ arrayBuffer: ab, error: "" });
isVisibleStub.returns(false);
ext.isResultsTabVisible = false;
await dataSourceCommand.runDataSource(
dummyFileContent as DataSourceFiles,
insightsConn.connLabel,
Expand All @@ -708,7 +708,7 @@ describe("dataSourceCommand2", () => {
dummyFileContent.dataSource.selectedType = DataSourceTypes.SQL;
getMetaStub.resolves(dummyMeta);
getDataInsightsStub.resolves({ arrayBuffer: ab, error: "" });
isVisibleStub.returns(false);
ext.isResultsTabVisible = false;
await dataSourceCommand.runDataSource(
dummyFileContent as DataSourceFiles,
insightsConn.connLabel,
Expand Down

0 comments on commit fbde768

Please sign in to comment.