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:
authorChristian Couder <chriscool@tuxfamily.org>2021-01-28 00:09:33 +0300
committerChristian Couder <chriscool@tuxfamily.org>2021-01-28 00:09:33 +0300
commitb3a047a5626ff654ad998dd7a94c6a51624f54b4 (patch)
tree7c612f7e11b07ecaf15a81385358670dda084113
parent86d933c0a993eabbff4c725da3cff067f371e641 (diff)
parentfbff306a32b63f47a4d26cbc628357ae354a41ad (diff)
Merge branch 'go_user_ff_branch_by_default' into 'master'
Enable go implementation of UserFFBranch by default See merge request gitlab-org/gitaly!3057
-rw-r--r--changelogs/unreleased/go_user_ff_branch_by_default.yml5
-rw-r--r--internal/metadata/featureflag/feature_flags.go2
2 files changed, 6 insertions, 1 deletions
diff --git a/changelogs/unreleased/go_user_ff_branch_by_default.yml b/changelogs/unreleased/go_user_ff_branch_by_default.yml
new file mode 100644
index 000000000..551304639
--- /dev/null
+++ b/changelogs/unreleased/go_user_ff_branch_by_default.yml
@@ -0,0 +1,5 @@
+---
+title: Enable go implementation of UserFFBranch by default
+merge_request: 3057
+author:
+type: changed
diff --git a/internal/metadata/featureflag/feature_flags.go b/internal/metadata/featureflag/feature_flags.go
index 5f24c0aa2..08ef10e65 100644
--- a/internal/metadata/featureflag/feature_flags.go
+++ b/internal/metadata/featureflag/feature_flags.go
@@ -16,7 +16,7 @@ var (
// LogCommandStats will log additional rusage stats for commands
LogCommandStats = FeatureFlag{Name: "log_command_stats", OnByDefault: false}
// GoUserFFBranch enables the Go implementation of UserFFBranch
- GoUserFFBranch = FeatureFlag{Name: "go_user_ff_branch", OnByDefault: false}
+ GoUserFFBranch = FeatureFlag{Name: "go_user_ff_branch", OnByDefault: true}
// GoUserUpdateBranch enables the Go implementation of UserUpdateBranch
GoUserUpdateBranch = FeatureFlag{Name: "go_user_update_branch", OnByDefault: false}
// GoUserCommitFiles enables the Go implementation of UserCommitFiles