Skip to content

Commit 3dbaac6

Browse files
[DECO-319] Make accessible cluster filtering optin (#233)
1 parent adb932a commit 3dbaac6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/databricks-vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@
500500
},
501501
"databricks.clusters.onlyShowAccessibleClusters": {
502502
"type": "boolean",
503-
"default": true,
503+
"default": false,
504504
"description": "Enable/disable filtering for only accessible clusters (clusters on which the current user can run code)"
505505
}
506506
}
@@ -587,4 +587,4 @@
587587
],
588588
"report-dir": "coverage"
589589
}
590-
}
590+
}

packages/databricks-vscode/src/WorkspaceConfigs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const workspaceConfigs = {
3333
return (
3434
workspace
3535
.getConfiguration("databricks")
36-
?.get<boolean>("clusters.onlyShowAccessibleClusters") ?? true
36+
?.get<boolean>("clusters.onlyShowAccessibleClusters") ?? false
3737
);
3838
},
3939
};

0 commit comments

Comments
 (0)