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>2022-08-11 13:45:37 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2022-08-11 13:45:37 +0300
commit60f197836831e160ca82d1eecd36110c1e7f4b13 (patch)
tree3a9901ce801699bd45687b6f9f8e213209727de2
parentf20b8259797f3a1f3b59142c9789af97fcb0f69f (diff)
Default enable Praefect generated replica pathssmh-default-enable-replica-path
This commit default enables Praefect generated replica paths feature flag. The feature flag has been enabled on production since 2022-07-25. The changes have been exercised on GitLab.com with new repositories that are mainly forks of GitLab projects that live on the Gitaly Cluster. There have been no reports of issues and the logs don't surface anything that seems problematic. Changelog: changed
-rw-r--r--internal/metadata/featureflag/ff_praefect_generated_paths.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/ff_praefect_generated_paths.go b/internal/metadata/featureflag/ff_praefect_generated_paths.go
index 8858043ca..6e3103959 100644
--- a/internal/metadata/featureflag/ff_praefect_generated_paths.go
+++ b/internal/metadata/featureflag/ff_praefect_generated_paths.go
@@ -5,5 +5,5 @@ var PraefectGeneratedReplicaPaths = NewFeatureFlag(
"praefect_generated_replica_paths",
"v15.0.0",
"https://gitlab.com/gitlab-org/gitaly/-/issues/4218",
- false,
+ true,
)