summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-01-12 14:40:37 +0100
committerGitHub <noreply@github.com>2023-01-12 14:40:37 +0100
commit2abd22d3f855d8ed12a8872e612df91492dd8a85 (patch)
tree9dceb525a717eaa59b6373e61c79bb72bb7a4f74 /config-model
parente20fe7919184ee64083c92b3c376f577f3a3bd21 (diff)
parent9eb9e4bcf44db7c0a1830989b1ad089d26d77914 (diff)
Merge pull request #25534 from vespa-engine/balder/switch-default-gc-two-phase
Two phase GC is now default
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java2
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/content/ContentClusterTest.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
index fba2f711111..25ca654fc63 100644
--- a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
+++ b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
@@ -70,7 +70,7 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
private List<String> environmentVariables = List.of();
private boolean loadCodeAsHugePages = false;
private boolean sharedStringRepoNoReclaim = false;
- private boolean useTwoPhaseDocumentGc = false;
+ private boolean useTwoPhaseDocumentGc = true;
private int mbus_java_num_targets = 1;
private int mbus_java_events_before_wakeup = 1;
private int mbus_cpp_num_targets = 1;
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/content/ContentClusterTest.java b/config-model/src/test/java/com/yahoo/vespa/model/content/ContentClusterTest.java
index c41840eaefa..96f5f9b9409 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/content/ContentClusterTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/content/ContentClusterTest.java
@@ -1154,8 +1154,8 @@ public class ContentClusterTest extends ContentBaseTest {
// TODO change once gradual rollout complete
@Test
- public void two_phase_garbage_collection_config_is_disabled_by_default() {
- assertFalse(resolveTwoPhaseGcConfigWithFeatureFlag(null));
+ public void two_phase_garbage_collection_config_is_enabled_by_default() {
+ assertTrue(resolveTwoPhaseGcConfigWithFeatureFlag(null));
}
@Test