(message: string)
| 2142 | Effect.gen(function* () { |
| 2143 | const owner = row.owner as Owner; |
| 2144 | const reauth = (message: string): CredentialResolutionError => |
| 2145 | new CredentialResolutionError({ |
| 2146 | owner, |
| 2147 | integration: IntegrationSlug.make(row.integration), |
| 2148 | name: ConnectionName.make(row.name), |
| 2149 | message, |
| 2150 | reauthRequired: true, |
| 2151 | }); |
| 2152 | |
| 2153 | // A recorded invalid_grant is the AS's standing verdict on this grant: |
| 2154 | // re-sending it cannot succeed, so don't. Fail as reauth-required |
no outgoing calls
no test coverage detected