summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-04-17 11:31:28 +0200
committerJon Bratseth <bratseth@oath.com>2018-04-17 11:31:28 +0200
commit55ba4d6543250aec271e0591fc520cc1090a3a60 (patch)
tree3039ad468fdaaf865c3c7e2829bfc74528807ec6 /config-model
parent7656f2f105841790c0ea9a20251f58677cde1665 (diff)
Fix error message
Diffstat (limited to 'config-model')
-rwxr-xr-xconfig-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
index 89ba9a206ff..6ee525c1246 100755
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
@@ -480,7 +480,7 @@ public final class ContainerCluster
@NonNull
public DocprocChains getDocprocChains() {
if (containerDocproc == null)
- throw new IllegalStateException("Search components not found in container cluster '" + getSubId() +
+ throw new IllegalStateException("Document processing components not found in container cluster '" + getSubId() +
"': Add <document-processing/> to the cluster in services.xml");
return containerDocproc.getChains();
}