mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 09:35:39 -05:00
fix resource deployment notebooks (#21096)
This commit is contained in:
@@ -118,7 +118,8 @@ CommandsRegistry.registerCommand('azdata.connect',
|
||||
authenticationType?: AuthenticationType,
|
||||
userName?: string,
|
||||
password?: string,
|
||||
databaseName?: string
|
||||
databaseName?: string,
|
||||
options?: { [name: string]: any }
|
||||
}) {
|
||||
const capabilitiesServices = accessor.get(ICapabilitiesService);
|
||||
const connectionManagementService = accessor.get(IConnectionManagementService);
|
||||
@@ -139,7 +140,7 @@ CommandsRegistry.registerCommand('azdata.connect',
|
||||
saveProfile: true,
|
||||
id: undefined,
|
||||
groupId: undefined,
|
||||
options: {}
|
||||
options: args.options
|
||||
};
|
||||
const connectionProfile = ConnectionProfile.fromIConnectionProfile(capabilitiesServices, profile);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user