summaryrefslogtreecommitdiffstats
path: root/streamingvisitors
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-08-17 11:06:37 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-08-17 11:06:37 +0000
commit83346d3cd03af673a68fbf2b87c909cea616f963 (patch)
tree3f7fb63caf692467ec6240f9c4315d62fae54977 /streamingvisitors
parente3da754202e029c2598876ddbf2b32bfc6a7d151 (diff)
Consistent naming of warnings during rank expression compilation.
Diffstat (limited to 'streamingvisitors')
-rw-r--r--streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp b/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp
index 9d46e65edd0..706325a0f7a 100644
--- a/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp
+++ b/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp
@@ -119,7 +119,7 @@ RankManager::Snapshot::initRankSetup(const BlueprintFactory & factory)
auto rs = std::make_shared<RankSetup>(factory, ie);
rs->configure(); // reads config values from the property map
if (!rs->compile()) {
- LOG(warning, "Could not compile rank setup for rank profile '%u'. Errors = %s", i, rs->getJoinedErrors().c_str());
+ LOG(warning, "Could not compile rank setup for rank profile '%u'. Errors = %s", i, rs->getJoinedWarnings().c_str());
return false;
}
_rankSetup.push_back(rs);