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 7B952200BCA for ; Mon, 21 Nov 2016 17:23:26 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 7A11F160B19; Mon, 21 Nov 2016 16:23:26 +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 C1E71160AEF for ; Mon, 21 Nov 2016 17:23:25 +0100 (CET) Received: (qmail 24577 invoked by uid 500); 21 Nov 2016 16:23:24 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 24568 invoked by uid 99); 21 Nov 2016 16:23:24 -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; Mon, 21 Nov 2016 16:23:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6F764E0ADC; Mon, 21 Nov 2016 16:23:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Date: Mon, 21 Nov 2016 16:23:24 -0000 Message-Id: <8cb0e5c9f4a14d429799d49fd79635d3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] activemq-artemis git commit: ARTEMIS-859 Add BACKLOG_PROP_NAME on the TransportConstants list archived-at: Mon, 21 Nov 2016 16:23:26 -0000 Repository: activemq-artemis Updated Branches: refs/heads/master 135f00e99 -> f509c081c ARTEMIS-859 Add BACKLOG_PROP_NAME on the TransportConstants list Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/f570b5aa Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/f570b5aa Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/f570b5aa Branch: refs/heads/master Commit: f570b5aa175cf87c8aa55bd2d20d529016337e14 Parents: 135f00e Author: Shaun Appleton Authored: Mon Nov 21 12:38:40 2016 +0000 Committer: Clebert Suconic Committed: Mon Nov 21 11:22:29 2016 -0500 ---------------------------------------------------------------------- .../artemis/core/remoting/impl/netty/TransportConstants.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/f570b5aa/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java ---------------------------------------------------------------------- diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java index dfa2ce2..14efb79 100644 --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/TransportConstants.java @@ -250,6 +250,7 @@ public class TransportConstants { allowableAcceptorKeys.add(TransportConstants.CONNECTIONS_ALLOWED); allowableAcceptorKeys.add(ActiveMQDefaultConfiguration.getPropMaskPassword()); allowableAcceptorKeys.add(ActiveMQDefaultConfiguration.getPropPasswordCodec()); + allowableAcceptorKeys.add(TransportConstants.BACKLOG_PROP_NAME); ALLOWABLE_ACCEPTOR_KEYS = Collections.unmodifiableSet(allowableAcceptorKeys);