aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Meland <bjormel@users.noreply.github.com>2021-04-17 08:12:02 +0200
committerGitHub <noreply@github.com>2021-04-17 08:12:02 +0200
commit281b1caf89e63dde56fd65fcb9c15318807e5be7 (patch)
tree17430acbc9f1812e1f178e639edff3eadb806024
parentb07dffa84009b99147e52a2902c83bc9a1294cd6 (diff)
Update DeploymentSpecXmlReader.java
-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) {