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:
authorToon Claes <toon@gitlab.com>2021-01-14 18:02:27 +0300
committerToon Claes <toon@gitlab.com>2021-01-14 18:02:27 +0300
commit64625df11e8add7e64cce44a47984512e5f42d72 (patch)
treee8131eb1ca7506cf0397b2d9c1643f5f36651d49
parent04659e96f400993b00367b39819cdffe105e0cab (diff)
parent8443b3333271e05b4ff86e383f5ed249b4198c64 (diff)
Merge branch 'pks-go-fetch-source-branch-default' into 'master'
featureflag: Enable Go implementation of FetchSourceBranch by default See merge request gitlab-org/gitaly!2998
-rw-r--r--internal/metadata/featureflag/feature_flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/feature_flags.go b/internal/metadata/featureflag/feature_flags.go
index ce0e25318..c1022357a 100644
--- a/internal/metadata/featureflag/feature_flags.go
+++ b/internal/metadata/featureflag/feature_flags.go
@@ -10,7 +10,7 @@ type FeatureFlag struct {
// NOTE: if you add a new feature flag please add it to the `All` list defined below.
var (
// GoFetchSourceBranch enables a go implementation of FetchSourceBranch
- GoFetchSourceBranch = FeatureFlag{Name: "go_fetch_source_branch", OnByDefault: false}
+ GoFetchSourceBranch = FeatureFlag{Name: "go_fetch_source_branch", OnByDefault: true}
// DistributedReads allows praefect to redirect accessor operations to up-to-date secondaries
DistributedReads = FeatureFlag{Name: "distributed_reads", OnByDefault: true}
// ReferenceTransactions will handle Git reference updates via the transaction service for strong consistency