summaryrefslogtreecommitdiff
path: root/redfish-core/include/redfish_aggregator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'redfish-core/include/redfish_aggregator.hpp')
-rw-r--r--redfish-core/include/redfish_aggregator.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/redfish-core/include/redfish_aggregator.hpp b/redfish-core/include/redfish_aggregator.hpp
index 24b42d95e4..622bb5b459 100644
--- a/redfish-core/include/redfish_aggregator.hpp
+++ b/redfish-core/include/redfish_aggregator.hpp
@@ -490,8 +490,8 @@ class RedfishAggregator
std::string data = thisReq.req.body();
crow::HttpClient::getInstance().sendDataWithCallback(
data, id, std::string(sat->second.host()),
- sat->second.port_number(), targetURI, thisReq.fields,
- thisReq.method(), retryPolicyName, cb);
+ sat->second.port_number(), targetURI, false /*useSSL*/,
+ thisReq.fields, thisReq.method(), retryPolicyName, cb);
}
// Forward a request for a collection URI to each known satellite BMC
@@ -509,8 +509,8 @@ class RedfishAggregator
std::string data = thisReq.req.body();
crow::HttpClient::getInstance().sendDataWithCallback(
data, id, std::string(sat.second.host()),
- sat.second.port_number(), targetURI, thisReq.fields,
- thisReq.method(), retryPolicyName, cb);
+ sat.second.port_number(), targetURI, false /*useSSL*/,
+ thisReq.fields, thisReq.method(), retryPolicyName, cb);
}
}