Fix undefined property in PCIeFunctionCollection
According to Redfish spec, current "PCIeFunctions@odata.count" in
PCIeFunctionCollection should be "Members@odata.count".
Tested:
Redfish validator passed.
Change-Id: Iaabcad0f19b619eea26e2902944d3262fe499a5b
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com>
diff --git a/redfish-core/lib/pcie.hpp b/redfish-core/lib/pcie.hpp
index 1904c26..78fa669 100644
--- a/redfish-core/lib/pcie.hpp
+++ b/redfish-core/lib/pcie.hpp
@@ -312,7 +312,7 @@
std::to_string(functionNum)}});
}
}
- asyncResp->res.jsonValue["PCIeFunctions@odata.count"] =
+ asyncResp->res.jsonValue["Members@odata.count"] =
pcieFunctionList.size();
};
std::string escapedPath = std::string(pciePath) + "/" + device;