Renamed error yaml due to clash with error yaml in openpower-dbus
To fix duplicate "Event" string in error message ""Message":
"org.open_power.Error.Host.Event.Event"", renamed error yaml
in dbus interfaces from org/open_power/Host/Event.errors.yaml
to org/open_power/Host.errors.yaml.
Renaming of error yaml file in dbus interfaces clashes with the
error yaml file name in openpower-debug-collector.
To fix the clash renaming openpower-debug-collector error yaml from
org/open_power/Host.errors.yaml to org/open_power/Host/Boot.errors.yaml
Change-Id: Ib5fc0cd176b5d9dc2f47f35b008277434855a711
Signed-off-by: Marri Devender Rao <devenrao@in.ibm.com>
diff --git a/watchdog_timeout.cpp b/watchdog_timeout.cpp
index bb0d4bc..d6a267a 100644
--- a/watchdog_timeout.cpp
+++ b/watchdog_timeout.cpp
@@ -1,11 +1,11 @@
#include <phosphor-logging/elog.hpp>
#include "phosphor-logging/elog-errors.hpp"
-#include "org/open_power/Host/error.hpp"
+#include "org/open_power/Host/Boot/error.hpp"
int main(int argc, char* argv[])
{
using namespace phosphor::logging;
- using error = sdbusplus::org::open_power::Host::Error::WatchdogTimedOut;
+ using error = sdbusplus::org::open_power::Host::Boot::Error::WatchdogTimedOut;
report<error>();
return 0;