mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 17:23:05 -05:00
handle unsupported connections in OE/Recent connections view (#20588)
* handle unknown provider in OE * more update * add comment * test
This commit is contained in:
@@ -107,6 +107,11 @@ export class OEManageConnectionAction extends Action {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!this._capabilitiesService.getCapabilities(connectionProfile.providerName)) {
|
||||
this._connectionManagementService.handleUnsupportedProvider(connectionProfile.providerName);
|
||||
return true;
|
||||
}
|
||||
|
||||
let options: IConnectionCompletionOptions = {
|
||||
params: undefined,
|
||||
saveTheConnection: false,
|
||||
|
||||
Reference in New Issue
Block a user