diff options
author | Martin Ritchie <ritchiem@apache.org> | 2006-11-07 11:50:13 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2006-11-07 11:50:13 +0000 |
commit | fd15e4036bc07dbe9430e45bd900de2fcbd01ba2 (patch) | |
tree | 153a836bea6db14921058fcf93b0523b54d9f66c /java/client/test | |
parent | f071563aaab0d853b366423c6c714dcf9d01a33b (diff) | |
download | qpid-python-fd15e4036bc07dbe9430e45bd900de2fcbd01ba2.tar.gz |
TransactedTest.java - Added Logging around the setup.
Added a sleep after VM Broker creation to allow broker to startup.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@472073 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/test')
-rw-r--r-- | java/client/test/src/org/apache/qpid/transacted/TransactedTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/client/test/src/org/apache/qpid/transacted/TransactedTest.java b/java/client/test/src/org/apache/qpid/transacted/TransactedTest.java index a04eeef389..ca8ad9f07e 100644 --- a/java/client/test/src/org/apache/qpid/transacted/TransactedTest.java +++ b/java/client/test/src/org/apache/qpid/transacted/TransactedTest.java @@ -92,14 +92,14 @@ public class TransactedTest // Sleep to ensure all queues have been created in the Broker. try { - Thread.sleep(1000); + System.out.println("Finishing Setup"); + Thread.sleep(3000); } catch (InterruptedException e) { //do nothing } - - + System.out.println("Setup Complete"); } @After |