mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
Migrate cert validation error handling to mssql extension (#21829)
This commit is contained in:
@@ -172,7 +172,7 @@ export class TestConnectionManagementService implements IConnectionManagementSer
|
||||
|
||||
connect(connection: IConnectionProfile, uri: string, options?: IConnectionCompletionOptions, callbacks?: IConnectionCallbacks): Promise<IConnectionResult> {
|
||||
return new Promise<IConnectionResult>((resolve, reject) => {
|
||||
resolve({ connected: true, errorMessage: undefined!, errorCode: undefined!, callStack: undefined! });
|
||||
resolve({ connected: true, errorMessage: undefined!, errorCode: undefined!, messageDetails: undefined! });
|
||||
});
|
||||
}
|
||||
|
||||
@@ -334,4 +334,8 @@ export class TestConnectionManagementService implements IConnectionManagementSer
|
||||
openChangePasswordDialog(profile: IConnectionProfile): Promise<string | undefined> {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
openCustomErrorDialog(options: azdata.window.IErrorDialogOptions): Promise<string | undefined> {
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user