diff options
| author | Tommaso Sciortino <[email protected]> | 2025-06-25 15:38:18 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-25 22:38:18 +0000 |
| commit | 79c647d486a5ef3cf9eb68f23000525e8d2c4a91 (patch) | |
| tree | 43dab16125247ef844b8b46a403935356f98f4cd /packages/core/src/utils/retry.ts | |
| parent | 00b24c917e6c6f5e059fec6cb0a5b55789fa1e1e (diff) | |
Merge "Login with Google Workspace" auth option into "Login with Google" (#1574)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'packages/core/src/utils/retry.ts')
| -rw-r--r-- | packages/core/src/utils/retry.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/core/src/utils/retry.ts b/packages/core/src/utils/retry.ts index 851db0e7..ebe18510 100644 --- a/packages/core/src/utils/retry.ts +++ b/packages/core/src/utils/retry.ts @@ -99,8 +99,7 @@ export async function retryWithBackoff<T>( if ( consecutive429Count >= 2 && onPersistent429 && - (authType === AuthType.LOGIN_WITH_GOOGLE_PERSONAL || - authType === AuthType.LOGIN_WITH_GOOGLE_ENTERPRISE) + authType === AuthType.LOGIN_WITH_GOOGLE_PERSONAL ) { try { const fallbackModel = await onPersistent429(authType); |
