mirror of
https://github.com/trailofbits/algo.git
synced 2026-08-17 21:25:50 +02:00
The wait_for_connection task hangs in certain Docker environments when using the local provider because Ansible's local connection plugin doesn't implement the reset method, causing the warning "Reset is not implemented for this connection" and potential indefinite hangs. This change adds a condition to skip the task for localhost connections, following the same pattern used elsewhere in the codebase (e.g., the SSH wait task on line 40 and the wait_for_connection in ubuntu.yml). The task is unnecessary for localhost since it always completes instantly (elapsed: 0) - localhost is always reachable. Fixes #14627 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>