Fix exception when receiving POISON_PILL
POISON_PILL is causing writing to closed client due to logic in code.
This commit is contained in:
parent
eff6ed12e6
commit
48cdcb20fb
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue