()
| 644 | |
| 645 | def assert_coordination_idle(socket_path, lock_specs, description): |
| 646 | def is_idle(): |
| 647 | return not os.path.lexists(str(socket_path)) and all( |
| 648 | lock_status(path, record_lock) == "free" |
| 649 | for path, record_lock in lock_specs |
| 650 | ) |
| 651 | |
| 652 | wait_until(is_idle, SHUTDOWN_TIMEOUT, description) |
| 653 | for path, record_lock in lock_specs: |
nothing calls this directly
no test coverage detected