(baseUrl: string)
| 417 | }); |
| 418 | |
| 419 | const installDefaultExecutorWebBaseUrl = (baseUrl: string): (() => void) => { |
| 420 | if (process.env.EXECUTOR_WEB_BASE_URL !== undefined) { |
| 421 | return () => {}; |
| 422 | } |
| 423 | |
| 424 | process.env.EXECUTOR_WEB_BASE_URL = baseUrl; |
| 425 | return () => { |
| 426 | delete process.env.EXECUTOR_WEB_BASE_URL; |
| 427 | }; |
| 428 | }; |
| 429 | |
| 430 | const cleanupPointer = (input: { hostname: string; scopeId: string; port: number }) => |
| 431 | Effect.gen(function* () { |
no outgoing calls
no test coverage detected