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:
Diffstat (limited to 'internal/metadata/featureflag/feature_flags.go')
-rw-r--r--internal/metadata/featureflag/feature_flags.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/metadata/featureflag/feature_flags.go b/internal/metadata/featureflag/feature_flags.go
index f119aeade..88f3d69e1 100644
--- a/internal/metadata/featureflag/feature_flags.go
+++ b/internal/metadata/featureflag/feature_flags.go
@@ -11,8 +11,6 @@ type FeatureFlag struct {
var (
// ReferenceTransactions will handle Git reference updates via the transaction service for strong consistency
ReferenceTransactions = FeatureFlag{Name: "reference_transactions", OnByDefault: true}
- // GoUserUpdateBranch enables the Go implementation of UserUpdateBranch
- GoUserUpdateBranch = FeatureFlag{Name: "go_user_update_branch", OnByDefault: true}
// UserRebaseConfirmable
GoUserRebaseConfirmable = FeatureFlag{Name: "go_user_rebase_confirmable", OnByDefault: true}
// GoUpdateRemoteMirror enables the Go implementation of UpdateRemoteMirror
@@ -30,7 +28,6 @@ var (
// All includes all feature flags.
var All = []FeatureFlag{
ReferenceTransactions,
- GoUserUpdateBranch,
GoUserRebaseConfirmable,
GrpcTreeEntryNotFound,
GoUpdateRemoteMirror,