Merge pull request #9624 from luvarqpp/patch-1

Fix exception when receiving POISON_PILL
This commit is contained in:
Loredana Crusoveanu 2020-08-11 17:30:01 +03:00 committed by GitHub
commit 26f21645a4
1 changed files with 4 additions and 4 deletions

View File

@ -49,11 +49,11 @@ public class EchoServer {
if (new String(buffer.array()).trim().equals(POISON_PILL)) {
client.close();
System.out.println("Not accepting client messages anymore");
} else {
buffer.flip();
client.write(buffer);
buffer.clear();
}
buffer.flip();
client.write(buffer);
buffer.clear();
}
private static void register(Selector selector, ServerSocketChannel serverSocket) throws IOException {