Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E0751200B68 for ; Fri, 19 Aug 2016 18:29:53 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DEFBC160AAB; Fri, 19 Aug 2016 16:29:53 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2FB97160A79 for ; Fri, 19 Aug 2016 18:29:53 +0200 (CEST) Received: (qmail 23828 invoked by uid 500); 19 Aug 2016 16:29:52 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 23814 invoked by uid 99); 19 Aug 2016 16:29:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Aug 2016 16:29:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 479C2E040F; Fri, 19 Aug 2016 16:29:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: <3c39434684b342fbb14f90b11c076d16@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-7000] Setting Servlet3Continuation isResumed flag to false after onComplete event Date: Fri, 19 Aug 2016 16:29:52 +0000 (UTC) archived-at: Fri, 19 Aug 2016 16:29:54 -0000 Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 45bdda848 -> a0f196dcb [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/a0f196dc Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a0f196dc Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a0f196dc Branch: refs/heads/3.1.x-fixes Commit: a0f196dcbe1db89c8d87ddc410ae2dac7b2ec41c Parents: 45bdda8 Author: Sergey Beryozkin Authored: Fri Aug 19 17:09:00 2016 +0100 Committer: Sergey Beryozkin Committed: Fri Aug 19 17:29:23 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/a0f196dc/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) {