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:
authorWill Chandler <wchandler@gitlab.com>2022-06-08 21:11:11 +0300
committerWill Chandler <wchandler@gitlab.com>2022-06-08 21:11:11 +0300
commitb9ccddc648b1c60983034985e6e1e36a9d2d42df (patch)
tree1c29b95f55d49db81259213986caf3382cbe2a1e
parent26ed941a5e2dfbec22c698a42f7ae7f699ddee07 (diff)
parentb40f2581082a81cebbdcc96fee35f21b6805466e (diff)
Merge branch '3817_enable_ff_by_default' into 'master'
Enable feature flag exact_pagination_token_match by default See merge request gitlab-org/gitaly!4606
-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)