Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove redundant
writer.flushBuffer()
call (#1207)
When doing a request through `requestFutureInternal` we'd publish the message into the outgoing write queue, and immediately after call `writer.flushBuffer()`. Due to the message needing to go through the outgoing message queue, which takes a small amount of time, the `flushBuffer` would be done first and before our message got written to the `dataPort`. Removing the call to `writer.flushBuffer()` since it doesn't actually flush our message/request. Signed-off-by: Maurice van Veen <[email protected]>
- Loading branch information