From 3c4d09d7492ff9a66195454aa7bf791be223bb38 Mon Sep 17 00:00:00 2001 From: "Hiram R. Chirino" Date: Tue, 18 Mar 2008 13:33:10 +0000 Subject: [PATCH] Don't use port 6001 since that conflicts with X servers on windows. git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@638359 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/activemq/proxy/ProxyTestSupport.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/activemq-core/src/test/java/org/apache/activemq/proxy/ProxyTestSupport.java b/activemq-core/src/test/java/org/apache/activemq/proxy/ProxyTestSupport.java index 57d4ea3e1a..c009187f3a 100755 --- a/activemq-core/src/test/java/org/apache/activemq/proxy/ProxyTestSupport.java +++ b/activemq-core/src/test/java/org/apache/activemq/proxy/ProxyTestSupport.java @@ -89,19 +89,19 @@ public class ProxyTestSupport extends BrokerTestSupport { } protected String getRemoteURI() { - return "tcp://localhost:7001"; + return "tcp://localhost:6171"; } protected String getLocalURI() { - return "tcp://localhost:6001"; + return "tcp://localhost:6161"; } protected String getRemoteProxyURI() { - return "tcp://localhost:7002"; + return "tcp://localhost:6162"; } protected String getLocalProxyURI() { - return "tcp://localhost:6002"; + return "tcp://localhost:6172"; } protected StubConnection createConnection() throws Exception {