summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-10-20 12:32:33 +0200
committerGitHub <noreply@github.com>2022-10-20 12:32:33 +0200
commit1912e2a98a8e564cfadd652cdf83b4b1e64908bb (patch)
treefd4a667f7579f022ee2ca156a216803914f4bb2e /controller-api
parent8a91e259064b40f2f5fde5f8233c9892446d105e (diff)
parentfe76c41b344b2b3fe67e97b700f97372a8a214f6 (diff)
Merge pull request #24512 from vespa-engine/jonmv/cross-instance-region-application-endpoints
Jonmv/cross instance region application endpoints
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