summaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
authorGeir Storli <geirst@oath.com>2018-06-06 14:47:18 +0000
committerGeir Storli <geirst@oath.com>2018-06-06 14:52:10 +0000
commit542c332f65773ac971d4faa60cb2500333dcca55 (patch)
tree11f662f1f5f744f8926212f331d4ed0a6a47deb8 /searchsummary
parent389801098797ab37c7bc4ac5a3888ef4d92214e7 (diff)
Ignore new 'attributecombiner' document summary transform until it is supported.
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/vespa/searchsummary/docsummary/docsumconfig.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/searchsummary/src/vespa/searchsummary/docsummary/docsumconfig.cpp b/searchsummary/src/vespa/searchsummary/docsummary/docsumconfig.cpp
index 83637bfc7cc..11ba90a8583 100644
--- a/searchsummary/src/vespa/searchsummary/docsummary/docsumconfig.cpp
+++ b/searchsummary/src/vespa/searchsummary/docsummary/docsumconfig.cpp
@@ -106,7 +106,10 @@ DynamicDocsumConfig::configure(const vespa::config::search::SummarymapConfig &cf
}
for (size_t i = 0; i < cfg.override.size(); ++i) {
const vespa::config::search::SummarymapConfig::Override & o = cfg.override[i];
- // DYNAMIC TEASER
+ if (o.command == "attributecombiner") {
+ // TODO: Remove this when support has been added
+ continue;
+ }
bool rc(false);
IDocsumFieldWriter::UP fieldWriter = createFieldWriter(o.field, o.command, o.arguments, rc);
if (rc && fieldWriter.get() != NULL) {