if Router::SendToOrQueue fails propagate that failure in LRCM handler

This commit is contained in:
jeff 2020-08-19 21:03:27 +00:00 committed by Jeff Becker
parent b6d63968c4
commit fac5502c55
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
1 changed files with 2 additions and 3 deletions

View File

@ -88,10 +88,9 @@ namespace llarp
LogDebug("forwarding LRCM to ", nextHop);
m_Router->SendToOrQueue(nextHop, msg.get(), handler);
return true;
return m_Router->SendToOrQueue(nextHop, msg.get(), handler);
}
template <
typename Lock_t,
typename Map_t,