quiet spurious warning

This commit is contained in:
Michael Davidsaver
2017-06-22 13:17:22 +02:00
parent 7ccd8df02f
commit c8bdcb62de

View File

@@ -2069,8 +2069,10 @@ public:
try
{
m_channel->checkAndGetTransport()->enqueueSendRequest(shared_from_this());
} catch (std::runtime_error&) {
// assume wrong connection state from checkAndGetTransport()
m_reportQueueStateInProgress = false;
} catch (std::exception& e) {
// noop (do not complain if fails)
LOG(logLevelWarn, "Ignore exception during MonitorStrategyQueue::release: %s", e.what());
m_reportQueueStateInProgress = false;
}