Skip to content

Commit a6be820

Browse files
committed
Remove retry blocker
1 parent 9193b36 commit a6be820

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

packages/app-check/src/internal-api.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -279,11 +279,7 @@ function createTokenRefresher(appCheck: AppCheckService): Refresher {
279279
throw result.error;
280280
}
281281
},
282-
(error: unknown) => {
283-
// Do not queue up retries if it's in a throttled state.
284-
if ((error as FirebaseError).code === AppCheckError.THROTTLED) {
285-
return false;
286-
}
282+
() => {
287283
return true;
288284
},
289285
() => {

0 commit comments

Comments
 (0)