Commit ddcabec8 authored by Igor Drozdov's avatar Igor Drozdov

Merge branch '199912-ff-enable-by-default' into 'master'

Enable async_merge_request_check_mergeability by default

See merge request gitlab-org/gitlab!31196
parents a9722596 3493852c
......@@ -866,7 +866,7 @@ class MergeRequest < ApplicationRecord
check_service = MergeRequests::MergeabilityCheckService.new(self)
if async && Feature.enabled?(:async_merge_request_check_mergeability, project)
if async && Feature.enabled?(:async_merge_request_check_mergeability, project, default_enabled: true)
check_service.async_execute
else
check_service.execute(retry_lease: false)
......
---
title: Enable async_merge_request_check_mergeability by default
merge_request: 31196
author:
type: other
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