log_services: Fix system dump entries route
With redfish-dump-log enabled, the bmcweb service would throw a
runtime error and exit because the dump entries routes for
Managers and Systems were the same.
The Systems dump entries route should be
'/redfish/v1/Systems/system/LogServices/Dump/Entries/'
Tested:
With redfish-dump-log enabled,
- bmcweb service does not throw runtime error
- Redfish Service Validator passes
Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com>
Change-Id: I0ffd19bfc643cb8a3be3c5c2cd88c270ec974267
diff --git a/redfish-core/lib/log_services.hpp b/redfish-core/lib/log_services.hpp
index ea53d18..d3a5f6f 100644
--- a/redfish-core/lib/log_services.hpp
+++ b/redfish-core/lib/log_services.hpp
@@ -2210,7 +2210,7 @@
/**
* Functions triggers appropriate requests on DBus
*/
- BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/LogServices/Dump/Entries/")
+ BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/LogServices/Dump/Entries/")
.privileges({"Login"})
.methods(boost::beast::http::verb::get)(
[](const crow::Request&,