This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 78300f44dd79f3259bc3f831ad82392319f3bd8f Author: Mark Thomas <ma...@apache.org> AuthorDate: Sun Jun 30 22:35:36 2019 +0100 Align with 9.0.x. SpotBugs --- java/org/apache/tomcat/websocket/AsyncChannelWrapperSecure.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/websocket/AsyncChannelWrapperSecure.java b/java/org/apache/tomcat/websocket/AsyncChannelWrapperSecure.java index 631d669..0147b71 100644 --- a/java/org/apache/tomcat/websocket/AsyncChannelWrapperSecure.java +++ b/java/org/apache/tomcat/websocket/AsyncChannelWrapperSecure.java @@ -333,7 +333,8 @@ public class AsyncChannelWrapperSecure implements AsyncChannelWrapper { future.fail(new IllegalStateException(sm.getString( "asyncChannelWrapperSecure.wrongStateRead"))); } - } catch (Exception e) { + } catch (RuntimeException | ReadBufferOverflowException | SSLException | EOFException | + ExecutionException | InterruptedException e) { reading.set(false); future.fail(e); } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org