Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2022-03-30 22:44:52 +0300
committerJohn Cai <jcai@gitlab.com>2022-03-30 22:44:52 +0300
commit3d2164bb1c7e6b0016164414c1e6b13df5f0eec3 (patch)
treea2ca4ea498de225a679d090a6fed09451dfcc82f
parent131adc858a199fec86ad128d41b10340e0e9fabc (diff)
featureflag: Enable TransactionalSymbolicRefUpdates by default
Now that gitaly_transaction_symbolic_ref_updates has been fully enabled in production for a few weeks, the next step is to enable it by default. Changelog: changed
-rw-r--r--internal/metadata/featureflag/ff_write_ref_manual_voting.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/ff_write_ref_manual_voting.go b/internal/metadata/featureflag/ff_write_ref_manual_voting.go
index b6884c3d7..d0ec0caed 100644
--- a/internal/metadata/featureflag/ff_write_ref_manual_voting.go
+++ b/internal/metadata/featureflag/ff_write_ref_manual_voting.go
@@ -2,4 +2,4 @@ package featureflag
// TransactionalSymbolicRefUpdates allows the WriteRef RPC to use an implementation to update HEAD that does
// its own transaction voting.
-var TransactionalSymbolicRefUpdates = NewFeatureFlag("transactional_symbolic_ref_updates", false)
+var TransactionalSymbolicRefUpdates = NewFeatureFlag("transactional_symbolic_ref_updates", true)