mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35:36 -05:00
hotfix sql-migration extension for release to PROD, remove usage of unreleased ads enum (#20879)
* remove enum and vbump hotfix * add update comments
This commit is contained in:
@@ -84,14 +84,14 @@ function getSqlDbConnectionProfile(
|
||||
databaseName: databaseName,
|
||||
userName: userName,
|
||||
password: password,
|
||||
authenticationType: azdata.connection.AuthenticationType.SqlLogin,
|
||||
authenticationType: 'SqlLogin',
|
||||
savePassword: false,
|
||||
saveProfile: false,
|
||||
options: {
|
||||
conectionName: '',
|
||||
server: serverName,
|
||||
database: databaseName,
|
||||
authenticationType: azdata.connection.AuthenticationType.SqlLogin,
|
||||
authenticationType: 'SqlLogin',
|
||||
user: userName,
|
||||
password: password,
|
||||
connectionTimeout: 60,
|
||||
@@ -122,7 +122,7 @@ function getConnectionProfile(
|
||||
azureResourceId: azureResourceId,
|
||||
userName: userName,
|
||||
password: password,
|
||||
authenticationType: azdata.connection.AuthenticationType.SqlLogin,
|
||||
authenticationType: 'SqlLogin', // TODO: use azdata.connection.AuthenticationType.SqlLogin after next ADS release
|
||||
savePassword: false,
|
||||
groupFullName: connectId,
|
||||
groupId: connectId,
|
||||
@@ -131,7 +131,7 @@ function getConnectionProfile(
|
||||
options: {
|
||||
conectionName: connectId,
|
||||
server: serverName,
|
||||
authenticationType: azdata.connection.AuthenticationType.SqlLogin,
|
||||
authenticationType: 'SqlLogin',
|
||||
user: userName,
|
||||
password: password,
|
||||
connectionTimeout: 60,
|
||||
|
||||
Reference in New Issue
Block a user