Skip to content

Commit 8341f99

Browse files
committed
added open todos
1 parent 47f1789 commit 8341f99

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/vscode/treeviews/connections/DatabricksConnectionManagerDatabricks.ts

+10
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ export class DatabricksConnectionManagerDatabricks extends DatabricksConnectionM
1515
super();
1616
}
1717

18+
// TODO
19+
/*
20+
there is also an event that fires when the Databricks Extension config is changed
21+
in that case we should also re-initialize the connection manager
22+
*/
23+
1824
async initialize(): Promise<void> {
1925
ThisExtension.log("Initializing ConnectionManager Databricks Extension ...");
2026
this._initialized = false;
@@ -57,6 +63,10 @@ export class DatabricksConnectionManagerDatabricks extends DatabricksConnectionM
5763
const databricksExtension: vscode.Extension<any> = vscode.extensions.getExtension("databricks.databricks");
5864
if (!databricksExtension) {
5965
vscode.window.showErrorMessage("Please install the Databricks extension ('databricks.databricks') first!");
66+
// TODO
67+
/*
68+
You can trigger the installation using the workbench.extensions.installExtension command (see https://code.visualstudio.com/api/references/commands).
69+
*/
6070
return;
6171
}
6272

0 commit comments

Comments
 (0)