From 7495ea840b085307975aa276920a5a7fda9ffbb2 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 6 Jan 2011 09:33:03 -0500 Subject: [PATCH] Oops, wasn't retrieving the reply --- java/hop/TestPingPong.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/hop/TestPingPong.java b/java/hop/TestPingPong.java index c8e7107..e37dfae 100644 --- a/java/hop/TestPingPong.java +++ b/java/hop/TestPingPong.java @@ -57,7 +57,7 @@ public class TestPingPong { long startTime = System.currentTimeMillis(); for (int i = 0; i < 100000; i++) { api.post("req", "request", Integer.toString(i), null); - //System.out.println("Reply: " + sub.getQueue().take()); + sub.getQueue().take(); int j = i + 1; if ((j % 100) == 0) { long now = System.currentTimeMillis();