https://bz.apache.org/bugzilla/show_bug.cgi?id=64082
--- Comment #1 from william.crow...@roguewave.com --- For reference: Tomcat 8.5.3 - 8.5.31 and 9.0.0 - 9.0.8: ... @Override public boolean isClosed() { return !getSocket().isOpen(); } ... Tomcat 8.5.32 - 8.5.37 and 9.0.9 - 9.0.14 ... @Override public boolean isClosed() { return closed || !getSocket().isOpen(); } ... Tomcat 8.5.38 - 8.5.50 and 9.0.15 - 9.0.21: ... @Override public boolean isClosed() { return closed; } ... This code has been rewritten from 9.0.22 and on. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org