Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set inflight chan buffer to 2 for deadlock
It is possible for dispatchRequest and broadcastErr to both send a result down the inflight[] channel which has a buffer of 1, so would work for one of them then block on the other. If broadcastErr went first, then dispatchRequest would block causing the client to hang.
- Loading branch information