(endpoint)
| 52 | } |
| 53 | |
| 54 | const defaultProbe: MetaProbe = async (endpoint) => { |
| 55 | const http = createHttpClient({ baseURL: openAPIBase(endpoint), timeoutMs: META_PROBE_TIMEOUT_MS, retryAttempts: 0 }) |
| 56 | return new MetaClient(http).serverVersion() |
| 57 | } |
| 58 | |
| 59 | function buildClientBlock(): ClientBlock { |
| 60 | return { |
nothing calls this directly
no test coverage detected