(i: Instance)
| 499 | git_rev: str, |
| 500 | ) -> None: |
| 501 | def is_ready(i: Instance) -> bool: |
| 502 | return bool( |
| 503 | i.public_ip_address and i.state and i.state.get("Name") == "running" |
| 504 | ) |
| 505 | |
| 506 | done = False |
| 507 | async for remaining in ui.async_timeout_loop(60, 2): |