handle unsupported connection provider (#20577)

* handle unknown connection provider

* fix error
This commit is contained in:
Alan Ren
2022-09-09 14:14:33 -07:00
committed by GitHub
parent b9cb3de85b
commit be8bf7fcdc
10 changed files with 85 additions and 68 deletions

View File

@@ -322,4 +322,8 @@ export class TestConnectionManagementService implements IConnectionManagementSer
refreshAzureAccountTokenIfNecessary(uri: string): Promise<boolean> {
return undefined;
}
async handleUnsupportedProvider(providerName: string): Promise<boolean> {
return true;
}
}