summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp b/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp
index 863511da5ee..42c5d16162e 100644
--- a/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp
+++ b/searchcore/src/vespa/searchcore/grouping/groupingmanager.cpp
@@ -61,12 +61,7 @@ GroupingManager::init(const IAttributeContext &attrCtx)
list.push_back(groupingList[i]);
} catch (const std::exception & e) {
auto msg = fmt("Could not locate attribute for grouping number %ld : %s. Ignoring grouping '%s'", i, e.what(), grouping.asString().c_str());
- //
- // NOTE: if this issue is reported as an error in the
- // search reply, the grouping searcher will discard all
- // grouping results, which may or may not be what we want.
- //
- // Issue::report(msg);
+ Issue::report(msg);
LOG(error, "%s", msg.c_str());
}
}