aboutsummaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-12-19 13:40:44 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2023-12-19 13:40:44 +0100
commitfa695765be1c79f897830455d492946d93adff4e (patch)
treed658f10895adf2c8b7f919cde2c7e0180e815b22 /flags
parentaa0dc89f655654435d84d075f268754378b377aa (diff)
Estimate => Cost
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
index 6b437d2b8d2..a32ed75d67b 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -325,10 +325,10 @@ public class Flags {
"Where specified, CNAME records are used instead of the default ALIAS records, which have a default 60s TTL.",
"Takes effect at redeployment from controller");
- public static final UnboundBooleanFlag SORT_BLUEPRINTS_BY_ESTIMATE = defineFeatureFlag(
- "sort-blueprints-by-estimate", false,
+ public static final UnboundBooleanFlag SORT_BLUEPRINTS_BY_COST = defineFeatureFlag(
+ "sort-blueprints-by-cost", false,
List.of("baldersheim"), "2023-12-19", "2024-02-29",
- "If true blueprints are sorted based on cost estimate, rather that est_hits",
+ "If true blueprints are sorted based on cost estimate, rather that absolute estimated hits",
"Takes effect at redeployment",
INSTANCE_ID);