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:
authorVasilii Iakliushin <viakliushin@gitlab.com>2022-06-07 18:08:38 +0300
committerVasilii Iakliushin <viakliushin@gitlab.com>2022-06-07 18:10:06 +0300
commitb40f2581082a81cebbdcc96fee35f21b6805466e (patch)
tree3717464521d7e1dacce20abc78272a861e307ed1
parent70d6aa021ebfc05d9d727a7eb4c9ff4782db4c30 (diff)
Enable feature flag exact_pagination_token_match by default3817_enable_ff_by_default
Contributes to https://gitlab.com/gitlab-org/gitaly/-/issues/3817 Changelog: changed
-rw-r--r--internal/metadata/featureflag/ff_exact_pagination_token_match.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/ff_exact_pagination_token_match.go b/internal/metadata/featureflag/ff_exact_pagination_token_match.go
index 16912a85a..607896507 100644
--- a/internal/metadata/featureflag/ff_exact_pagination_token_match.go
+++ b/internal/metadata/featureflag/ff_exact_pagination_token_match.go
@@ -2,4 +2,4 @@ package featureflag
// ExactPaginationTokenMatch enables exact matching for provided pagination tokens and
// returns an error if the match is not found.
-var ExactPaginationTokenMatch = NewFeatureFlag("exact_pagination_token_match", false)
+var ExactPaginationTokenMatch = NewFeatureFlag("exact_pagination_token_match", true)