We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb932a commit 3dbaac6Copy full SHA for 3dbaac6
packages/databricks-vscode/package.json
@@ -500,7 +500,7 @@
500
},
501
"databricks.clusters.onlyShowAccessibleClusters": {
502
"type": "boolean",
503
- "default": true,
+ "default": false,
504
"description": "Enable/disable filtering for only accessible clusters (clusters on which the current user can run code)"
505
}
506
@@ -587,4 +587,4 @@
587
],
588
"report-dir": "coverage"
589
590
-}
+}
packages/databricks-vscode/src/WorkspaceConfigs.ts
@@ -33,7 +33,7 @@ export const workspaceConfigs = {
33
return (
34
workspace
35
.getConfiguration("databricks")
36
- ?.get<boolean>("clusters.onlyShowAccessibleClusters") ?? true
+ ?.get<boolean>("clusters.onlyShowAccessibleClusters") ?? false
37
);
38
39
};
0 commit comments