summaryrefslogtreecommitdiffstats
path: root/configutil
diff options
context:
space:
mode:
Diffstat (limited to 'configutil')
-rw-r--r--configutil/src/lib/configstatus.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/configutil/src/lib/configstatus.cpp b/configutil/src/lib/configstatus.cpp
index 97af1a13486..920de52dad7 100644
--- a/configutil/src/lib/configstatus.cpp
+++ b/configutil/src/lib/configstatus.cpp
@@ -186,7 +186,8 @@ ConfigStatus::fetch_json(std::string configId, std::string host, int port,
std::string path, std::string &data)
{
MyHttpHandler myHandler(configId);
- bool ok = vbench::HttpClient::fetch(vbench::ServerSpec(host, port), path, myHandler);
+ auto crypto = vespalib::CryptoEngine::get_default();
+ bool ok = vbench::HttpClient::fetch(*crypto, vbench::ServerSpec(host, port), path, myHandler);
if (ok) {
data = myHandler.getJson();