Skip to content

Commit

Permalink
chore: fix sandbox status 502 issue (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
embbnux authored Jun 16, 2023
1 parent 7924d3a commit 73275be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/SDK-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ describe('RingCentral.SDK', () => {
clientSecret: '',
});

// sandbox's /restapi/v1.0 throws a weird error, but /restapi/v1.0/status works fine
const res = await sdk.platform().get('/restapi/v1.0/status', null, {skipAuthCheck: true});
// sandbox's /restapi/v1.0/status triggers service overloaded very easily, but /restapi/v1.0 works fine
const res = await sdk.platform().get('/restapi/v1.0', null, {skipAuthCheck: true});

await sdk.cache().clean();

Expand Down

0 comments on commit 73275be

Please sign in to comment.