( reauthState: OAuthReauthRequiredState, )
| 961 | /** The recorded dead-grant mechanism, narrowed to a literal this build knows; |
| 962 | * an absent or unrecognized value reads as undefined. */ |
| 963 | const recordedDeadGrantReason = ( |
| 964 | reauthState: OAuthReauthRequiredState, |
| 965 | ): HealthCheckReason | undefined => |
| 966 | Option.getOrUndefined(decodeHealthCheckReasonOption(reauthState.oauthReauthRequiredReason)); |
| 967 | |
| 968 | // In-flight health probes, shared per connection across every executor holding |
| 969 | // the same root db handle. Read-time revalidation makes `connections.list` a |
no outgoing calls
no test coverage detected