Optimizing project management and its requirements
This commit is contained in:
@@ -212,7 +212,8 @@ std::expected<TResponse, ReturnStatus> requestData(Bus
|
||||
catch (const std::exception &e)
|
||||
{
|
||||
::api::log::postLogError(bus, std::format("Exception in requestData for message type: 0x{:08x}: {}", msg->getMessageTypeID(), e.what()));
|
||||
return std::unexpected(ReturnStatus::Exception);
|
||||
// return std::unexpected(ReturnStatus::Exception);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
|
||||
@@ -26,7 +26,7 @@ void Node::subscribe(const HashID &eventType)
|
||||
m_bus.subscribe(eventType, this);
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
/* Unsubscribe from a specific message type */
|
||||
/* Unsubscribe from a specific message type */
|
||||
void Node::unsubscribe(const HashID &eventType)
|
||||
{
|
||||
m_bus.unsubscribe(eventType, this);
|
||||
|
||||
Reference in New Issue
Block a user