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>2021-06-16 15:41:11 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2021-06-16 15:41:11 +0300
commit675852448ab1963ea5a1113c5b3c3e6dfaac4c88 (patch)
tree1bb8b0581e664dbb0a2367c89d5593666f5f335f
parentb82b2da71ab8ad5e61e4f162b99e64a7ab78ca7f (diff)
Default enable Go port of UpdateRemoteMirrorsmh-default-enable-update-remote-mirror
UpdateRemoteMirror has been ported to Go and successfully tested in production. This commit default enables the Go port so we can proceed to removing the Ruby implementation in 14.2. Changelog: performance
-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 4b8d05bf6..e0dcadbaf 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 (
// GoUpdateRemoteMirror enables the Go implementation of UpdateRemoteMirror
- GoUpdateRemoteMirror = FeatureFlag{Name: "go_update_remote_mirror", OnByDefault: false}
+ GoUpdateRemoteMirror = FeatureFlag{Name: "go_update_remote_mirror", OnByDefault: true}
// FetchInternalRemoteErrors makes FetchInternalRemote return actual errors instead of a boolean
FetchInternalRemoteErrors = FeatureFlag{Name: "fetch_internal_remote_errors", OnByDefault: false}
// TxConfig enables transactional voting for SetConfig and DeleteConfig RPCs.