Commit 3493852c authored by Patrick Bajao's avatar Patrick Bajao

Enable async_merge_request_check_mergeability by default

The feature has been enable on GitLab.com for a few days now
and it's been working without issues.

To include in the final release, should be enabled by default.
This way, self-managed installs can still disable it if they
encounter some issues we haven't seen.
parent 3effc546
......@@ -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