Optimizing project management and its requirements

This commit is contained in:
Sylvain Schneider
2026-03-12 18:56:19 +01:00
parent f25c5789ea
commit e64921702b
13 changed files with 354 additions and 190 deletions

View File

@@ -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;
}
}
//--------------------------------------------------------------

View File

@@ -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);