Commit 7d523a37 authored by Thong Kuah's avatar Thong Kuah

Merge branch 'sh-enable-matching-mr-db-sync-fflag-default' into 'master'

Enable matching_merge_request_db_sync feature flag by default

See merge request gitlab-org/gitlab!45184
parents 447cd283 6c336b49
......@@ -4,4 +4,4 @@ introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/42435
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/254488
group: group::create
type: development
default_enabled: false
\ No newline at end of file
default_enabled: true
......@@ -11,7 +11,7 @@ module EE
override :match?
def match?
return super unless ::Feature.enabled?(:matching_merge_request_db_sync)
return super unless ::Feature.enabled?(:matching_merge_request_db_sync, default_enabled: true)
return super unless ::Gitlab::Database::LoadBalancing.enable?
# When a user merges a merge request, the following sequence happens:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment