diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2010-04-12 15:42:04 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2010-04-12 15:42:04 +0000 |
| commit | cee13443091a714e837429beab62a2c09e0911d9 (patch) | |
| tree | 703e47f611a97b537b791bd959dbc292cf5d4ad1 /qpid/java/client | |
| parent | c5e59c94f2a675b1fd5695590b585cb7ed05b99a (diff) | |
| download | qpid-python-cee13443091a714e837429beab62a2c09e0911d9.tar.gz | |
QPID-2346 : Addressed the problems with AcknowledgeAfterFailoverOnMessageTest, The issues were the same as AckAfterFailoverTest. So used same prepBroker approach. Test also need timeout increased as broke restarts took to long for a message to be sent/received. Finally the last change was thatthe queue needed to be re-declared so that the final queue depth check would have a queue to query.
Merged from 0.5.x-dev @ r907004
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@933281 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/client')
| -rw-r--r-- | qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java b/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java index 49f94edef7..b5ad42d8e1 100644 --- a/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java +++ b/qpid/java/client/src/main/java/org/apache/qpid/client/AMQSession.java @@ -486,6 +486,12 @@ public abstract class AMQSession<C extends BasicMessageConsumer, P extends Basic { _queue = new FlowControllingBlockingQueue(_prefetchHighMark, null); } + + // Add creation logging to tie in with the existing close logging + if (_logger.isInfoEnabled()) + { + _logger.info("Created session:" + this); + } } /** |
