mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
vbump and typo fix (#19374)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
|
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
|
||||||
"version": "3.0.0-release.250",
|
"version": "3.0.0-release.251",
|
||||||
"downloadFileNames": {
|
"downloadFileNames": {
|
||||||
"Windows_86": "win-x86-net6.0.zip",
|
"Windows_86": "win-x86-net6.0.zip",
|
||||||
"Windows_64": "win-x64-net6.0.zip",
|
"Windows_64": "win-x64-net6.0.zip",
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ export class AccountFeature implements StaticFeature {
|
|||||||
// find account
|
// find account
|
||||||
const accountList = await azdata.accounts.getAllAccounts();
|
const accountList = await azdata.accounts.getAllAccounts();
|
||||||
const account = accountList.find(a => a.key.accountId === request.accountId);
|
const account = accountList.find(a => a.key.accountId === request.accountId);
|
||||||
if (account) {
|
if (!account) {
|
||||||
console.log(`Failed to find azure account ${request.accountId} when executing token refresh`);
|
console.log(`Failed to find azure account ${request.accountId} when executing token refresh`);
|
||||||
throw Error(localizedConstants.failedToFindAccount(request.accountId));
|
throw Error(localizedConstants.failedToFindAccount(request.accountId));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user