mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Enable Sql Authentication Provider by default (targeting May release) (#22213)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user