diff options
| author | Gordon Sim <gsim@apache.org> | 2008-11-24 12:41:35 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-11-24 12:41:35 +0000 |
| commit | 16bc9ad4f8e812906ff2d5dd897809d10fecd6f3 (patch) | |
| tree | a4bc9635b38a5df8a228c45f388eb8301711768c /qpid/cpp/src | |
| parent | 15d4e36fba7ef65e25e51ba9b5702b0e2e727b64 (diff) | |
| download | qpid-python-16bc9ad4f8e812906ff2d5dd897809d10fecd6f3.tar.gz | |
Avoid spurious error message for TransportFailure
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@720178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/client/Dispatcher.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/client/Dispatcher.cpp b/qpid/cpp/src/qpid/client/Dispatcher.cpp index 59bc265bd2..27cc4184f9 100644 --- a/qpid/cpp/src/qpid/client/Dispatcher.cpp +++ b/qpid/cpp/src/qpid/client/Dispatcher.cpp @@ -91,6 +91,10 @@ void Dispatcher::run() } catch (const ClosedException&) { QPID_LOG(debug, QPID_MSG(session.getId() << ": closed by peer")); + } + catch (const TransportFailure&) { + QPID_LOG(info, QPID_MSG(session.getId() << ": transport failure")); + throw; } catch (const std::exception& e) { if ( failoverHandler ) { |
