(accountId: string)
| 17 | const DEAD_CACHE_TTL_SEC = 60 * 60 |
| 18 | |
| 19 | function deadKey(accountId: string): string { |
| 20 | return `oauth:dead:${accountId}` |
| 21 | } |
| 22 | |
| 23 | export function isTerminalRefreshError(code: string | undefined | null): boolean { |
| 24 | if (!code) return false |
no outgoing calls
no test coverage detected