Commit 8341f99 1 parent 47f1789 commit 8341f99 Copy full SHA for 8341f99
File tree 1 file changed +10
-0
lines changed
src/vscode/treeviews/connections
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ export class DatabricksConnectionManagerDatabricks extends DatabricksConnectionM
15
15
super ( ) ;
16
16
}
17
17
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
+
18
24
async initialize ( ) : Promise < void > {
19
25
ThisExtension . log ( "Initializing ConnectionManager Databricks Extension ..." ) ;
20
26
this . _initialized = false ;
@@ -57,6 +63,10 @@ export class DatabricksConnectionManagerDatabricks extends DatabricksConnectionM
57
63
const databricksExtension : vscode . Extension < any > = vscode . extensions . getExtension ( "databricks.databricks" ) ;
58
64
if ( ! databricksExtension ) {
59
65
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
+ */
60
70
return ;
61
71
}
62
72
You can’t perform that action at this time.
0 commit comments