fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima
This commit is contained in:
parent
6d022b4023
commit
ab87996d60
1 changed files with 2 additions and 1 deletions
|
@ -287,7 +287,8 @@ export class GBAdminService implements IGBAdminService {
|
||||||
const result = await fetch(url, options);
|
const result = await fetch(url, options);
|
||||||
|
|
||||||
if (result.status != 200) {
|
if (result.status != 200) {
|
||||||
throw new Error(`acquireElevatedToken error: ${result.status}: ${result.statusText}.`)
|
const text = await result.text();
|
||||||
|
throw new Error(`acquireElevatedToken error: ${result.status}: ${result.statusText} ${text}.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
const text = await result.text();
|
const text = await result.text();
|
||||||
|
|
Loading…
Add table
Reference in a new issue