diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2010-05-20 15:18:59 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2010-05-20 15:18:59 +0000 |
| commit | 875b9b35146a0e1c9da2c4de7c1dcf0a45698f52 (patch) | |
| tree | 8b7eb916374d2fc8109a88119a313be962efee91 /java/systests/src | |
| parent | 4f641bd0c0deb1eda0524d8b73bc295b160817c4 (diff) | |
| download | qpid-python-875b9b35146a0e1c9da2c4de7c1dcf0a45698f52.tar.gz | |
QPID-2622 : Add Closeable interface and update Broker components to use it and add close method in ApplicationRegistry to safely perform the close.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@946667 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests/src')
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java b/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java index 17546b4d39..5b7670eaa3 100644 --- a/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java +++ b/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java @@ -524,11 +524,12 @@ public class QpidTestCase extends TestCase } catch (Exception e) { + _logger.error("Broker initialise failed due to:",e); try { registry.close(); } - catch (Exception closeE) + catch (Throwable closeE) { closeE.printStackTrace(); } |
