Github user apiri commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/279#discussion_r174459253
--- Diff: extensions/http-curl/client/HTTPClient.cpp ---
@@ -334,6 +334,8 @@ void HTTPClient::configure_secure_connection(CURL
*http_session) {
logger_->log_debug("Using certificate file %s",
ssl_context_service_->getCertificateFile());
curl_easy_setopt(http_session, CURLOPT_SSL_CTX_FUNCTION,
&configure_ssl_context);
curl_easy_setopt(http_session, CURLOPT_SSL_CTX_DATA,
static_cast<void*>(ssl_context_service_.get()));
+ curl_easy_setopt(http_session, CURLOPT_CAINFO, 0);
--- End diff --
Okay, thanks for clarifying. Looks good to me. Will merge.
---