Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
runtime: fix flakey connector deadlock
Image connectors can deadlock at high volumes of requests and response due to channel stuffing. Specifically it's not okay to await a send into the container while not concurrently polling for container responses. Re-work the state machine to forward non-error responses using a separate spawned task, which is joined over only upon terminal error or completion.
- Loading branch information