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:
authorKarthik Nayak <knayak@gitlab.com>2022-09-22 12:38:52 +0300
committerKarthik Nayak <knayak@gitlab.com>2022-09-22 12:42:33 +0300
commit0c7be0ba796b4a94befca249df0ce7af95ae0e89 (patch)
treed05f93dbe5fce2f526e34109bc4bc46506396e5a
parent16b38f034eb38253006a2e69a4b4220717b45a99 (diff)
ff: Set SimplifyFindLocalBranchesResponse to true
Since this featureflag has a rails/gitlab counterpart we cannot simply delete it. We need to ensure that both Gitaly and rails have it set to true by default for one release and then we can delete the feature flag in the next release.
-rw-r--r--internal/metadata/featureflag/ff_simplify_find_local_branches_response.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/ff_simplify_find_local_branches_response.go b/internal/metadata/featureflag/ff_simplify_find_local_branches_response.go
index 04dfc9f3b..a324b6db7 100644
--- a/internal/metadata/featureflag/ff_simplify_find_local_branches_response.go
+++ b/internal/metadata/featureflag/ff_simplify_find_local_branches_response.go
@@ -6,5 +6,5 @@ var SimplifyFindLocalBranchesResponse = NewFeatureFlag(
"simplify_find_local_branches_response",
"v15.4.0",
"https://gitlab.com/gitlab-org/gitaly/-/issues/1294",
- false,
+ true,
)