Skip to content

Commit

Permalink
refactor: Use IdentityPoolClient.RETRY_CONFIG
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbankhead committed Apr 11, 2024
1 parent 5a6308f commit 409da97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth/identitypoolclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,11 @@ export class IdentityPoolClient extends BaseExternalAccountClient {
headers?: {[key: string]: string}
): Promise<string> {
const opts: GaxiosOptions = {
...IdentityPoolClient.RETRY_CONFIG,
url,
method: 'GET',
headers,
responseType: formatType,
retry: true,
};
let subjectToken: string | undefined;
if (formatType === 'text') {
Expand Down

0 comments on commit 409da97

Please sign in to comment.