From 065d653a14745e204d4ed4a77e4828afcaa8a31d Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Mon, 8 May 2017 17:43:38 -0400 Subject: [PATCH] minor --- src/remoteClient/clientContextImpl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/remoteClient/clientContextImpl.cpp b/src/remoteClient/clientContextImpl.cpp index 11587a8..026594f 100644 --- a/src/remoteClient/clientContextImpl.cpp +++ b/src/remoteClient/clientContextImpl.cpp @@ -287,8 +287,9 @@ public: { startRequest(PURE_CANCEL_REQUEST); m_channel->checkAndGetTransport()->enqueueSendRequest(shared_from_this()); - } catch (...) { + } catch (std::exception& e) { // noop (do not complain if fails) + LOG(logLevelWarn, "Ignore exception during ChanneGet::cancel: %s", e.what()); } }