bmcweb: resolve issue with Manager UUID property
UUID got broken with a botched commit here:
0f74e643ec246c333ef4724af1ecd5adeb1b6658
This should resolve #10
Change-Id: Ic9ff631b56ab02525fadab1ef8013904d36d71c8
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
diff --git a/redfish-core/lib/managers.hpp b/redfish-core/lib/managers.hpp
index e31561e..daa441d 100644
--- a/redfish-core/lib/managers.hpp
+++ b/redfish-core/lib/managers.hpp
@@ -695,9 +695,8 @@
res.jsonValue["Description"] = "Baseboard Management Controller";
res.jsonValue["PowerState"] = "On";
res.jsonValue["ManagerType"] = "BMC";
- res.jsonValue["UUID"] =
-
- res.jsonValue["Model"] = "OpenBmc"; // TODO(ed), get model
+ res.jsonValue["UUID"] = uuid;
+ res.jsonValue["Model"] = "OpenBmc"; // TODO(ed), get model
res.jsonValue["LogServices"] = {
{"@odata.id", "/redfish/v1/Managers/bmc/LogServices"}};