[hornetq-commits] JBoss hornetq SVN: r11264 - branches/Branch_2_2_EAP_cluster_clean3/tests/src/org/hornetq/tests/integration/cluster/failover.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Aug 31 16:11:58 EDT 2011


Author: clebert.suconic at jboss.com
Date: 2011-08-31 16:11:58 -0400 (Wed, 31 Aug 2011)
New Revision: 11264

Modified:
   branches/Branch_2_2_EAP_cluster_clean3/tests/src/org/hornetq/tests/integration/cluster/failover/FailoverTestBase.java
Log:
trying to fix a possible thread leakage

Modified: branches/Branch_2_2_EAP_cluster_clean3/tests/src/org/hornetq/tests/integration/cluster/failover/FailoverTestBase.java
===================================================================
--- branches/Branch_2_2_EAP_cluster_clean3/tests/src/org/hornetq/tests/integration/cluster/failover/FailoverTestBase.java	2011-08-31 18:59:24 UTC (rev 11263)
+++ branches/Branch_2_2_EAP_cluster_clean3/tests/src/org/hornetq/tests/integration/cluster/failover/FailoverTestBase.java	2011-08-31 20:11:58 UTC (rev 11264)
@@ -103,11 +103,14 @@
       liveServer.setIdentity(this.getClass().getSimpleName() + "/liveServer");
 
       liveServer.start();
+      
+      waitForServer(liveServer.getServer());
 
       if (backupServer != null)
       {
          backupServer.setIdentity(this.getClass().getSimpleName() + "/backupServer");
          backupServer.start();
+         waitForServer(backupServer.getServer());
       }
    }
 



More information about the hornetq-commits mailing list