You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ra...@apache.org on 2007/08/24 21:02:24 UTC

svn commit: r569480 - /incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java

Author: rajith
Date: Fri Aug 24 12:02:23 2007
New Revision: 569480

URL: http://svn.apache.org/viewvc?rev=569480&view=rev
Log:
Fixed compilation errors related to PingPongBouncer.
It looks like this file was accidently deleted.

Modified:
    incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java

Modified: incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java?rev=569480&r1=569479&r2=569480&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java (original)
+++ incubator/qpid/trunk/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java Fri Aug 24 12:02:23 2007
@@ -186,12 +186,12 @@
             synchronized (this)
             {
                 // Establish a bounce back client on the ping queue to bounce back the pings.
-                perThreadSetup._testPingBouncer =
+             /*   perThreadSetup._testPingBouncer =
                     new PingPongBouncer(fileProperties, factoryName, username, password, destinationName, persistent,
                         transacted, selector, verbose, pubsub);
 
                 // Start the connections for client and producer running.
-                perThreadSetup._testPingBouncer.getConnection().start();
+                perThreadSetup._testPingBouncer.getConnection().start();*/
 
                 // Establish a ping-pong client on the ping queue to send the pings and receive replies with.
                 perThreadSetup._testPingProducer = new PingPongProducer(testParameters);
@@ -246,6 +246,6 @@
         /**
          * Holds the test ping client.
          */
-        private PingPongBouncer _testPingBouncer;
+        //private PingPongBouncer _testPingBouncer;
     }
 }