summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-10-19 16:02:41 +0200
committerjonmv <venstad@gmail.com>2022-10-19 16:02:41 +0200
commit032059293579f4e68064adf4fed4ef323d0bd1ae (patch)
tree2a2e3df3d36d067aae6b69c0f3ec8378fbf310f6 /controller-api
parentd9971c5e86a6710727c50d628cfb2b172f63ee36 (diff)
Allow multiple regions and instances in app endpoints, part model + tests
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedAliasTarget.java2
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedDirectTarget.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedAliasTarget.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedAliasTarget.java
index ca01c713e93..da296361535 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedAliasTarget.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedAliasTarget.java
@@ -9,7 +9,7 @@ import java.util.Objects;
/**
* An implementation of {@link AliasTarget} where is requests are answered based on the weight assigned to the
* record, as a proportion of the total weight for all records having the same DNS name.
- *
+ * <p>
* The portion of received traffic is calculated as follows: (record weight / sum of the weights of all records).
*
* @author mpolden
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedDirectTarget.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedDirectTarget.java
index b899cb57b60..a9293ca3d7a 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedDirectTarget.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/WeightedDirectTarget.java
@@ -8,7 +8,7 @@ import java.util.Objects;
/**
* An implementation of {@link DirectTarget} where is requests are answered based on the weight assigned to the
* record, as a proportion of the total weight for all records having the same DNS name.
- *
+ * <p>
* The portion of received traffic is calculated as follows: (record weight / sum of the weights of all records).
*
* @author freva