Repository: cxf Updated Branches: refs/heads/master d534ecc1d -> 7a7a6c002
[CXF-7000] Setting Servlet3Continuation isResumed flag to false after onComplete event Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/7a7a6c00 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/7a7a6c00 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/7a7a6c00 Branch: refs/heads/master Commit: 7a7a6c0023f7e09e966bbef8c9f41ed3401bad50 Parents: d534ecc Author: Sergey Beryozkin <[email protected]> Authored: Fri Aug 19 17:09:00 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Aug 19 17:09:00 2016 +0100 ---------------------------------------------------------------------- .../org/apache/cxf/transport/http/Servlet3ContinuationProvider.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/7a7a6c00/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Servlet3ContinuationProvider.java ---------------------------------------------------------------------- diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Servlet3ContinuationProvider.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Servlet3ContinuationProvider.java index d8f554c..137dc45 100644 --- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Servlet3ContinuationProvider.java +++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Servlet3ContinuationProvider.java @@ -184,6 +184,7 @@ public class Servlet3ContinuationProvider implements ContinuationProvider { callback.onError(ex); } } + isResumed = false; } public void onError(AsyncEvent event) throws IOException { if (callback != null) {
