aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Meland <bjormel@users.noreply.github.com>2021-04-17 15:45:31 +0200
committerGitHub <noreply@github.com>2021-04-17 15:45:31 +0200
commita6898a5c5e6e030e9354a06a67a288340610d591 (patch)
tree17430acbc9f1812e1f178e639edff3eadb806024
parentb07dffa84009b99147e52a2902c83bc9a1294cd6 (diff)
parent281b1caf89e63dde56fd65fcb9c15318807e5be7 (diff)
Merge pull request #17476 from vespa-engine/bjormel-patch-1
-rw-r--r--config-model-api/src/main/java/com/yahoo/config/application/api/xml/DeploymentSpecXmlReader.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model-api/src/main/java/com/yahoo/config/application/api/xml/DeploymentSpecXmlReader.java b/config-model-api/src/main/java/com/yahoo/config/application/api/xml/DeploymentSpecXmlReader.java
index 48a675fa182..4bd819b3b6a 100644
--- a/config-model-api/src/main/java/com/yahoo/config/application/api/xml/DeploymentSpecXmlReader.java
+++ b/config-model-api/src/main/java/com/yahoo/config/application/api/xml/DeploymentSpecXmlReader.java
@@ -418,7 +418,7 @@ public class DeploymentSpecXmlReader {
if ("true".equals(activeValue)) return true;
if ("false".equals(activeValue)) return false;
throw new IllegalArgumentException("Region tags must have an 'active' attribute set to 'true' or 'false' " +
- "to control whether the region should receive production traffic");
+ "to control whether this region should receive traffic from the global endpoint of this application");
}
private static boolean isEmptySpec(Element root) {