(marker_dir: str)
| 50 | |
| 51 | @flow(on_cancellation=[child_cancel_hook], log_prints=True) |
| 52 | async def async_child_flow(marker_dir: str): |
| 53 | Path(marker_dir, CHILD_STARTED_MARKER).write_text("started") |
| 54 | while True: |
| 55 | await asyncio.sleep(0.2) |
| 56 | |
| 57 | |
| 58 | @flow(on_cancellation=[parent_cancel_hook], log_prints=True) |
no test coverage detected
searching dependent graphs…