summaryrefslogtreecommitdiff
path: root/qpid/java/perftests/src
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2012-07-20 13:16:29 +0000
committerKeith Wall <kwall@apache.org>2012-07-20 13:16:29 +0000
commit1a12b8ec6af647aff744e9a75be1537be9620713 (patch)
treee4aefc49cfecbaee8d59f95cce114212d7f391c4 /qpid/java/perftests/src
parent86ec92715e981988e4ff4ce9e6905fac6088d210 (diff)
downloadqpid-python-1a12b8ec6af647aff744e9a75be1537be9620713.tar.gz
QPID-4143: exclude qpid-client and its third party libs from the perftests release. This makes it easier to run the perftests using an old client version. Also made logging more sensible.
Applied patch from Philip Harvey <phil@philharveyonline.com>. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1363765 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/perftests/src')
-rw-r--r--qpid/java/perftests/src/main/java/org/apache/qpid/disttest/controller/TestRunner.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/perftests/src/main/java/org/apache/qpid/disttest/controller/TestRunner.java b/qpid/java/perftests/src/main/java/org/apache/qpid/disttest/controller/TestRunner.java
index 4ad282b039..e973f07c12 100644
--- a/qpid/java/perftests/src/main/java/org/apache/qpid/disttest/controller/TestRunner.java
+++ b/qpid/java/perftests/src/main/java/org/apache/qpid/disttest/controller/TestRunner.java
@@ -208,7 +208,7 @@ public class TestRunner
{
try
{
- awaitLatch(_testResultsLatch, interval, "Timed out waiting for participant results");
+ awaitLatch(_testResultsLatch, interval, "still waiting for participant results");
}
catch (DistributedTestException e)
{
@@ -289,7 +289,7 @@ public class TestRunner
{
final long latchCount = latch.getCount();
String formattedMessage = "After " + timeout + "ms ... " + message + " ... Expecting " + latchCount + " more responses.";
- LOGGER.error(formattedMessage);
+ LOGGER.info(formattedMessage); // info rather than error because we time out periodically so we can log progress
throw new DistributedTestException(formattedMessage);
}
}