[jboss-cvs] JBoss Messaging SVN: r5743 - branches/network_interfaces/tests/src/org/jboss/messaging/tests/integration/remoting.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jan 27 09:46:14 EST 2009


Author: jmesnil
Date: 2009-01-27 09:46:13 -0500 (Tue, 27 Jan 2009)
New Revision: 5743

Modified:
   branches/network_interfaces/tests/src/org/jboss/messaging/tests/integration/remoting/NetworkAddressTestBase.java
Log:
use 0.0.0.0 IPv4 address instead of ::0 IPv6

Modified: branches/network_interfaces/tests/src/org/jboss/messaging/tests/integration/remoting/NetworkAddressTestBase.java
===================================================================
--- branches/network_interfaces/tests/src/org/jboss/messaging/tests/integration/remoting/NetworkAddressTestBase.java	2009-01-27 13:59:22 UTC (rev 5742)
+++ branches/network_interfaces/tests/src/org/jboss/messaging/tests/integration/remoting/NetworkAddressTestBase.java	2009-01-27 14:46:13 UTC (rev 5743)
@@ -120,7 +120,7 @@
       for (Entry<NetworkInterface, InetAddress> entry : set)
       {
          String host = entry.getValue().getHostAddress();
-         testConnection("::0", host, true);
+         testConnection("0.0.0.0", host, true);
       }
    }
 




More information about the jboss-cvs-commits mailing list