We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87228e3 commit 3836475Copy full SHA for 3836475
packages/core/src/auth/sso/clients.ts
@@ -109,10 +109,9 @@ export class OidcClient {
109
return true
110
}
111
112
- // As part of SIM IDE-10703, there was an assumption that retrying on InvalidGrantException
113
- // may be useful. This may not be the case anymore and if more research is done, this may not be needed.
114
- // TODO: setup some telemetry to see if there are any successes on a subsequent retry for this case.
115
- return err.name === 'InvalidGrantException'
+ // Previously retried InvalidGrantException on the basis that it may be useful
+ // We have found that this is not a retryable exception
+ return false
116
117
const client = new SSOOIDC({
118
region,
0 commit comments