summaryrefslogtreecommitdiffstats
path: root/searchcore/src
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-10-08 08:36:58 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-10-08 08:36:58 +0000
commitaf061e49b017d10f2b162d80b9c5228285c0ef11 (patch)
tree64a43d89ab272ff07cc34df5d861cc9c9e761e43 /searchcore/src
parente0956c74c9d0a756140b0cf62468a813cb6d9fd0 (diff)
Use vespalib::Lock -> std::mutex
Diffstat (limited to 'searchcore/src')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/rpc_hooks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/rpc_hooks.cpp b/searchcore/src/vespa/searchcore/proton/server/rpc_hooks.cpp
index 62ffdb3e5a8..428aba1a6b5 100644
--- a/searchcore/src/vespa/searchcore/proton/server/rpc_hooks.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/rpc_hooks.cpp
@@ -200,7 +200,7 @@ RPCHooksBase::RPCHooksBase(Params &params)
_proton.get_search_server(),
_proton.get_docsum_server(),
_proton.get_monitor_server(), *_orb)),
- _regAPI(*_orb, params.slobrok_config),
+ _regAPI(*_orb, slobrok::ConfiguratorFactory(params.slobrok_config)),
_stateLock(),
_stateCond(),
_executor(48, 128 * 1024)