(baseUrl: string)
| 331 | }); |
| 332 | |
| 333 | const parseExecutorServerConnection = (baseUrl: string) => |
| 334 | Effect.try({ |
| 335 | try: () => parseCliExecutorServerConnection(baseUrl), |
| 336 | catch: (cause) => |
| 337 | cause instanceof Error ? cause : new Error(`Invalid server URL: ${String(cause)}`), |
| 338 | }); |
| 339 | |
| 340 | const daemonBaseUrl = (hostname: string, port: number): string => |
| 341 | `http://${canonicalDaemonHost(hostname)}:${port}`; |
no test coverage detected