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