Aggregation: Fix header clobbering
We attempt to sanitize the response body of the asyncResp object as
the first step of copying over the satellite response into the
object. This is clobbering the "OData-Version" from the response
header.
We can completely remove this step since the body will already be
empty.
Tested:
OData-Version is still present in the header when querying a satellite
resource
curl -s -D- localhost/redfish/v1/Chassis/5B247A_test | grep OData
OData-Version: 4.0
Signed-off-by: Carson Labrado <clabrado@google.com>
Change-Id: I82f54ae9b990504a3236b7a1273c794b1ee6f090
diff --git a/redfish-core/include/redfish_aggregator.hpp b/redfish-core/include/redfish_aggregator.hpp
index b50b775..b91498e 100644
--- a/redfish-core/include/redfish_aggregator.hpp
+++ b/redfish-core/include/redfish_aggregator.hpp
@@ -604,9 +604,6 @@
BMCWEB_LOG_DEBUG << "Added prefix to parsed satellite response";
- asyncResp->res.stringResponse.emplace(
- boost::beast::http::response<
- boost::beast::http::string_body>{});
asyncResp->res.result(resp.result());
asyncResp->res.jsonValue = std::move(jsonVal);
@@ -690,9 +687,6 @@
BMCWEB_LOG_DEBUG
<< "Collection does not exist, overwriting asyncResp";
- asyncResp->res.stringResponse.emplace(
- boost::beast::http::response<
- boost::beast::http::string_body>{});
asyncResp->res.result(resp.result());
asyncResp->res.jsonValue = std::move(jsonVal);