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:
authorSami Hiltunen <shiltunen@gitlab.com>2020-12-14 12:18:36 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2020-12-14 12:22:15 +0300
commit0e3ce0cb945778ef20c9eda1073771163c46edb2 (patch)
tree35bfb69d6221cc980e73bf94a32a6e0a24e29f6c
parentfb388ea4f85f04dc88e657fbbf33dbe571e19bd8 (diff)
enable Go port of UserCommitFiles by default
Enables the Go port of UserCommitFiles by default. The port has been successfully tested in production without issues.
-rw-r--r--changelogs/unreleased/smh-enable-user-commit-files.yml5
-rw-r--r--internal/metadata/featureflag/feature_flags.go2
2 files changed, 6 insertions, 1 deletions
diff --git a/changelogs/unreleased/smh-enable-user-commit-files.yml b/changelogs/unreleased/smh-enable-user-commit-files.yml
new file mode 100644
index 000000000..2334da4d3
--- /dev/null
+++ b/changelogs/unreleased/smh-enable-user-commit-files.yml
@@ -0,0 +1,5 @@
+---
+title: Enable Go port of UserCommitFiles by default
+merge_request: 2922
+author:
+type: performance
diff --git a/internal/metadata/featureflag/feature_flags.go b/internal/metadata/featureflag/feature_flags.go
index d4f33cc58..d9e2fb9f2 100644
--- a/internal/metadata/featureflag/feature_flags.go
+++ b/internal/metadata/featureflag/feature_flags.go
@@ -28,7 +28,7 @@ var (
// GoUserSquash enables the Go implementation of UserSquash
GoUserSquash = FeatureFlag{Name: "go_user_squash", OnByDefault: true}
// GoUserCommitFiles enables the Go implementation of UserCommitFiles
- GoUserCommitFiles = FeatureFlag{Name: "go_user_commit_files", OnByDefault: false}
+ GoUserCommitFiles = FeatureFlag{Name: "go_user_commit_files", OnByDefault: true}
// GoResolveConflicts enables the Go implementation of ResolveConflicts
GoResolveConflicts = FeatureFlag{Name: "go_resolve_conflicts", OnByDefault: false}
// GoUserUpdateSubmodule enables the Go implementation of