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