From bca671bc3fa07f85ed0b4298f4e6a9d66aff72bf Mon Sep 17 00:00:00 2001 From: Aasim Khan Date: Tue, 9 May 2023 11:09:33 -0700 Subject: [PATCH] disabling async tree by default (#23037) --- .../contrib/objectExplorer/common/serverGroup.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/contrib/objectExplorer/common/serverGroup.contribution.ts b/src/sql/workbench/contrib/objectExplorer/common/serverGroup.contribution.ts index 465d4e0f6c..7fabc2b8b7 100644 --- a/src/sql/workbench/contrib/objectExplorer/common/serverGroup.contribution.ts +++ b/src/sql/workbench/contrib/objectExplorer/common/serverGroup.contribution.ts @@ -49,7 +49,7 @@ const serverTreeConfig: IConfigurationNode = { 'properties': { 'serverTree.useAsyncServerTree': { 'type': 'boolean', - 'default': true, + 'default': false, 'description': localize('serverTree.useAsyncServerTree', "Use the new async server tree for the Servers view and Connection Dialog with support for new features such as dynamic node filtering. Requires a restart to take effect.") } }