Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 116BF109B3 for ; Tue, 15 Oct 2013 12:42:01 +0000 (UTC) Received: (qmail 36127 invoked by uid 500); 15 Oct 2013 12:42:00 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 36061 invoked by uid 500); 15 Oct 2013 12:42:00 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 35892 invoked by uid 99); 15 Oct 2013 12:42:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Oct 2013 12:42:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Oct 2013 12:41:59 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7EAD52388A33; Tue, 15 Oct 2013 12:41:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1532305 - /qpid/trunk/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp Date: Tue, 15 Oct 2013 12:41:39 -0000 To: commits@qpid.apache.org From: gsim@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131015124139.7EAD52388A33@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gsim Date: Tue Oct 15 12:41:39 2013 New Revision: 1532305 URL: http://svn.apache.org/r1532305 Log: QPID-5230: request that explicitly released messages be marked as redelivered on subsequent delivery attempts Modified: qpid/trunk/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp Modified: qpid/trunk/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp?rev=1532305&r1=1532304&r2=1532305&view=diff ============================================================================== --- qpid/trunk/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp (original) +++ qpid/trunk/qpid/cpp/src/qpid/client/amqp0_10/SessionImpl.cpp Tue Oct 15 12:41:39 2013 @@ -490,7 +490,7 @@ void SessionImpl::releaseImpl(qpid::mess { SequenceSet set; set.add(MessageImplAccess::get(m).getInternalId()); - session.messageRelease(set); + session.messageRelease(set, true); } void SessionImpl::receiverCancelled(const std::string& name) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org