aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/test/java/com
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-04-13 15:06:07 +0200
committerHarald Musum <musum@yahooinc.com>2023-04-13 15:06:07 +0200
commitf95354bf26d37b9cca812d49c10e3f8d95899c5d (patch)
tree249ae7c5baff0b36bce99a522f3d4f551807deb5 /controller-server/src/test/java/com
parent1406f2c7124198e4fe05650719a9d33d2737d5b3 (diff)
Add link to doc for exception when plan does not support deployment
Diffstat (limited to 'controller-server/src/test/java/com')
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/ControllerTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/ControllerTest.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/ControllerTest.java
index c641aaf0c85..a9a6fe602b6 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/ControllerTest.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/ControllerTest.java
@@ -1523,7 +1523,8 @@ public class ControllerTest {
tester.controller().applications().verifyPlan(tenant);
fail("should have thrown an exception");
} catch (IllegalArgumentException e) {
- assertEquals("Tenant 'tenant' has a plan 'None Plan - for testing purposes' with zero quota, not allowed to deploy", e.getMessage());
+ assertEquals("Tenant 'tenant' has a plan 'None Plan - for testing purposes' with zero quota, not allowed to deploy. " +
+ "See https://cloud.vespa.ai/support", e.getMessage());
}
}