Skip to content

Commit 409da97

Browse files
committed
refactor: Use IdentityPoolClient.RETRY_CONFIG
1 parent 5a6308f commit 409da97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auth/identitypoolclient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,11 @@ export class IdentityPoolClient extends BaseExternalAccountClient {
225225
headers?: {[key: string]: string}
226226
): Promise<string> {
227227
const opts: GaxiosOptions = {
228+
...IdentityPoolClient.RETRY_CONFIG,
228229
url,
229230
method: 'GET',
230231
headers,
231232
responseType: formatType,
232-
retry: true,
233233
};
234234
let subjectToken: string | undefined;
235235
if (formatType === 'text') {

0 commit comments

Comments
 (0)