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 16278200CDA for ; Fri, 4 Aug 2017 20:48:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 1474F16E0E5; Fri, 4 Aug 2017 18:48:40 +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 801A916E0E2 for ; Fri, 4 Aug 2017 20:48:39 +0200 (CEST) Received: (qmail 12007 invoked by uid 500); 4 Aug 2017 18:48:38 -0000 Mailing-List: contact dev-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 dev@activemq.apache.org Received: (qmail 11995 invoked by uid 99); 4 Aug 2017 18:48:38 -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, 04 Aug 2017 18:48:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 33C4AE96DA; Fri, 4 Aug 2017 18:48:38 +0000 (UTC) From: clebertsuconic To: dev@activemq.apache.org Reply-To: dev@activemq.apache.org References: In-Reply-To: Subject: [GitHub] activemq-artemis pull request #1442: ARTEMIS-1322 ServerLocator option to ig... Content-Type: text/plain Message-Id: <20170804184838.33C4AE96DA@git1-us-west.apache.org> Date: Fri, 4 Aug 2017 18:48:38 +0000 (UTC) archived-at: Fri, 04 Aug 2017 18:48:40 -0000 Github user clebertsuconic commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/1442#discussion_r131460692 --- Diff: tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/cluster/distribution/NettySymmetricClusterTest.java --- @@ -16,10 +16,79 @@ */ package org.apache.activemq.artemis.tests.integration.cluster.distribution; +import org.apache.activemq.artemis.api.core.client.ActiveMQClient; +import org.apache.activemq.artemis.api.core.client.ClientSessionFactory; +import org.apache.activemq.artemis.api.core.client.ServerLocator; +import org.junit.Test; + public class NettySymmetricClusterTest extends SymmetricClusterTest { @Override protected boolean isNetty() { return true; } + + @Test + public void testConnectionLoadBalancingUsingInitialConnectors() throws Exception { + final String ADDRESS = "queues.testaddress"; + final String QUEUE = "queue0"; + final String URL = "(tcp://localhost:61616,tcp://localhost:61617)"; --- End diff -- can you add a test using the URI? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---