diff options
author | Alan Conway <aconway@apache.org> | 2010-06-23 20:56:30 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-06-23 20:56:30 +0000 |
commit | 22a5da985666df9ea6d614fb56fb28a8f4d794a3 (patch) | |
tree | 6bd2e75c61cfc8d0c75863a52a66831d2bab3b93 /cpp/src/qpid/broker/Connection.cpp | |
parent | ce8b64f74c8f35868fd6b982be260f094f8889b7 (diff) | |
download | qpid-python-22a5da985666df9ea6d614fb56fb28a8f4d794a3.tar.gz |
Make management+cluster test more aggressive.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@957337 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Connection.cpp')
-rw-r--r-- | cpp/src/qpid/broker/Connection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Connection.cpp b/cpp/src/qpid/broker/Connection.cpp index bc755e3498..1e4d58032a 100644 --- a/cpp/src/qpid/broker/Connection.cpp +++ b/cpp/src/qpid/broker/Connection.cpp @@ -71,7 +71,8 @@ struct ConnectionTimeoutTask : public sys::TimerTask { void fire() { // If we get here then we've not received any traffic in the timeout period // Schedule closing the connection for the io thread - QPID_LOG(error, "Connection timed out: closing"); + QPID_LOG(error, "Connection " << connection.getMgmtId() + << " timed out: closing"); connection.abort(); } }; |