summaryrefslogtreecommitdiffstats
path: root/config-model-api
diff options
context:
space:
mode:
Diffstat (limited to 'config-model-api')
-rw-r--r--config-model-api/src/main/java/com/yahoo/config/model/api/ApplicationClusterEndpoint.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-model-api/src/main/java/com/yahoo/config/model/api/ApplicationClusterEndpoint.java b/config-model-api/src/main/java/com/yahoo/config/model/api/ApplicationClusterEndpoint.java
index a91f95d71b1..38a122c4fab 100644
--- a/config-model-api/src/main/java/com/yahoo/config/model/api/ApplicationClusterEndpoint.java
+++ b/config-model-api/src/main/java/com/yahoo/config/model/api/ApplicationClusterEndpoint.java
@@ -27,7 +27,7 @@ public class ApplicationClusterEndpoint {
private final int weight;
private final List<String> hostNames;
- public ApplicationClusterEndpoint(DnsName dnsName, Scope scope, RoutingMethod routingMethod, int weight, List<String> hostNames) {
+ private ApplicationClusterEndpoint(DnsName dnsName, Scope scope, RoutingMethod routingMethod, int weight, List<String> hostNames) {
this.dnsName = dnsName;
this.scope = scope;
this.routingMethod = routingMethod;
@@ -64,7 +64,7 @@ public class ApplicationClusterEndpoint {
private DnsName dnsName;
private Scope scope;
private RoutingMethod routingMethod;
- private int weigth = 0;
+ private int weigth = 1;
private List<String> hosts;
public Builder dnsName(DnsName name) {