reta commented on code in PR #2234: URL: https://github.com/apache/cxf/pull/2234#discussion_r1950166272
########## core/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java: ########## @@ -325,6 +325,9 @@ public synchronized boolean doIntercept(Message message) { } pause(); throw ex; + } catch (AbortedInvocationException ex) { + abort(); Review Comment: @coheigea @ffang folks would appreciate if you could validate my implementation here. Introduction of `AbortedInvocationException` is a best effort attempt to terminate chunking transfer that may fail in the middle. Sadly, there are no standard means to deal with that (AFAIK). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org