(baseUrl: string)
| 431 | }); |
| 432 | |
| 433 | const installDefaultExecutorWebBaseUrl = (baseUrl: string): (() => void) => { |
| 434 | if (process.env.EXECUTOR_WEB_BASE_URL !== undefined) { |
| 435 | return () => {}; |
| 436 | } |
| 437 | |
| 438 | process.env.EXECUTOR_WEB_BASE_URL = baseUrl; |
| 439 | return () => { |
| 440 | delete process.env.EXECUTOR_WEB_BASE_URL; |
| 441 | }; |
| 442 | }; |
| 443 | |
| 444 | const cleanupPointer = (input: { hostname: string; scopeId: string; port: number }) => |
| 445 | Effect.gen(function* () { |
no outgoing calls
no test coverage detected