summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2007-08-24 19:02:23 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2007-08-24 19:02:23 +0000
commitfa15956ebff52da55526b7a9f0cce0f7b904fcbf (patch)
tree8a4c85c7071023d61150773eecbd23a46e8ec3b7 /java
parent65f3a76fbfb0ca5d3178be80e35f378faad8ac62 (diff)
downloadqpid-python-fa15956ebff52da55526b7a9f0cce0f7b904fcbf.tar.gz
Fixed compilation errors related to PingPongBouncer.
It looks like this file was accidently deleted. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@569480 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java b/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java
index 780589768f..a6b74911e1 100644
--- a/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java
+++ b/java/perftests/src/main/java/org/apache/qpid/requestreply/PingPongTestPerf.java
@@ -186,12 +186,12 @@ public class PingPongTestPerf extends AsymptoticTestCase
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 @@ public class PingPongTestPerf extends AsymptoticTestCase
/**
* Holds the test ping client.
*/
- private PingPongBouncer _testPingBouncer;
+ //private PingPongBouncer _testPingBouncer;
}
}