()
| 328 | """Subprocess that writes to the store.""" |
| 329 | |
| 330 | async def do_work() -> None: |
| 331 | # This should auto-delegate to HTTP client in subprocess |
| 332 | await store.enqueue_rollout(input={"origin": "algo-subprocess"}) |
| 333 | |
| 334 | asyncio.run(do_work()) |
| 335 |
no test coverage detected