(key: string)
| 737 | const OAUTH_REFRESH_SKEW_SECONDS = 60; |
| 738 | |
| 739 | const profileNameFromKey = (key: string): string | null => |
| 740 | key.startsWith("profile:") ? key.slice("profile:".length) : null; |
| 741 | |
| 742 | const refreshOAuthConnection = ( |
| 743 | connection: ExecutorServerConnection, |
no outgoing calls
no test coverage detected