Sensors: Remove odata.context
Redfish made odata.context optional (1.6.0 of DSP0266, Sept 2018).
Redfish has removed odata.context from example payloads in the
specification (1.7.0 of DSP0266), removed it from the mockups,
and Redfish recommended not using.
The reason for making optional and removing from mockups/examples,
"no one could figure out how to use it and it did not add value".
Don't see value in it for our implementation.
Change-Id: I8d1c91460ea5836cb793ba1a2774a97649da208a
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/redfish-core/lib/sensors.hpp b/redfish-core/lib/sensors.hpp
index 628e6ff..adcdc25 100644
--- a/redfish-core/lib/sensors.hpp
+++ b/redfish-core/lib/sensors.hpp
@@ -384,8 +384,6 @@
{
sensorsAsyncResp->res.jsonValue["@odata.type"] =
"#SensorCollection.SensorCollection";
- sensorsAsyncResp->res.jsonValue["@odata.context"] =
- "/redfish/v1/$metadata#SensorCollection.SensorCollection";
sensorsAsyncResp->res.jsonValue["Description"] =
"Collection of Sensors for this Chassis";
sensorsAsyncResp->res.jsonValue["Members"] =
@@ -396,9 +394,6 @@
if (chassisSubNode != "Sensors")
{
sensorsAsyncResp->res.jsonValue["Id"] = chassisSubNode;
- sensorsAsyncResp->res.jsonValue["@odata.context"] =
- "/redfish/v1/$metadata#" + chassisSubNode + "." +
- chassisSubNode;
}
sensorsAsyncResp->res.jsonValue["@odata.id"] =
@@ -761,7 +756,6 @@
if (sensorSchema == "Sensors")
{
sensor_json["@odata.type"] = "#Sensor.v1_0_0.Sensor";
- sensor_json["@odata.context"] = "/redfish/v1/$metadata#Sensor.Sensor";
if (sensorType == "power")
{
sensor_json["ReadingUnits"] = "Watts";