summaryrefslogtreecommitdiff
path: root/redfish-core/lib/event_service.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'redfish-core/lib/event_service.hpp')
-rw-r--r--redfish-core/lib/event_service.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/redfish-core/lib/event_service.hpp b/redfish-core/lib/event_service.hpp
index c418504ee3..82004e0960 100644
--- a/redfish-core/lib/event_service.hpp
+++ b/redfish-core/lib/event_service.hpp
@@ -162,7 +162,6 @@ inline void requestRoutesEventService(App& app)
inline void requestRoutesSubmitTestEvent(App& app)
{
-
BMCWEB_ROUTE(
app, "/redfish/v1/EventService/Actions/EventService.SubmitTestEvent/")
.privileges(redfish::privileges::postEventService)
@@ -210,8 +209,8 @@ inline void requestRoutesEventDestinationCollection(App& app)
for (const std::string& id : subscripIds)
{
nlohmann::json::object_t member;
- member["@odata.id"] =
- "/redfish/v1/EventService/Subscriptions/" + id;
+ member["@odata.id"] = "/redfish/v1/EventService/Subscriptions/" +
+ id;
memberArray.push_back(std::move(member));
}
});