Skip to content

Commit

Permalink
Remove blocking write call when sending ACK
Browse files Browse the repository at this point in the history
Closes #6
  • Loading branch information
Jochen Schalanda committed May 20, 2016
1 parent b27a48f commit ee4b5df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private void sendACK(Channel channel) throws IOException {
buffer.writeInt((int) sequenceNum);

LOG.trace("Sending ACK for sequence number {} on channel {}", sequenceNum, channel);
channel.write(buffer).awaitUninterruptibly();
channel.write(buffer);
}
}

Expand Down

0 comments on commit ee4b5df

Please sign in to comment.