()
| 361 | ); |
| 362 | const executor = yield* ExecutorService; |
| 363 | const read = () => |
| 364 | executor.connections.list().pipe( |
| 365 | Effect.as("ok" as const), |
| 366 | Effect.catchCause(() => Effect.succeed("failed" as const)), |
| 367 | ); |
| 368 | |
| 369 | // The handle this request acquired for itself, whatever order the |
| 370 | // request fibers happened to acquire in. |
no test coverage detected