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