Enable Sql Authentication Provider by default (targeting May release) (#22213)

This commit is contained in:
Cheena Malhotra
2023-04-20 17:55:56 -07:00
committed by GitHub
parent 2142c706b0
commit f83815cecd
2 changed files with 3 additions and 3 deletions

View File

@@ -421,7 +421,7 @@
"mssql.enableSqlAuthenticationProvider": {
"type": "boolean",
"description": "%mssql.enableSqlAuthenticationProvider%",
"default": false
"default": true
},
"mssql.tableDesigner.preloadDatabaseModel": {
"type": "boolean",

View File

@@ -165,10 +165,10 @@ export function getAzureAuthenticationLibraryConfig(): string {
export function getEnableSqlAuthenticationProviderConfig(): boolean {
const config = getConfiguration();
if (config) {
return config.get<boolean>(enableSqlAuthenticationProviderConfig, false); // disabled by default
return config.get<boolean>(enableSqlAuthenticationProviderConfig, true); // enabled by default
}
else {
return false;
return true;
}
}