Commit df770ee2 authored by Stan Hu's avatar Stan Hu

Merge branch 'if-enable_specialized_project_share_ff' into 'master'

Enable specialized project share worker feature flag

See merge request gitlab-org/gitlab!56606
parents d22c6821 b72ccbfc
...@@ -23,7 +23,7 @@ module Projects ...@@ -23,7 +23,7 @@ module Projects
private private
def setup_authorizations(group, group_access = nil) def setup_authorizations(group, group_access = nil)
if Feature.enabled?(:specialized_project_authorization_project_share_worker) if Feature.enabled?(:specialized_project_authorization_project_share_worker, default_enabled: :yaml)
AuthorizedProjectUpdate::ProjectGroupLinkCreateWorker.perform_async( AuthorizedProjectUpdate::ProjectGroupLinkCreateWorker.perform_async(
project.id, group.id, group_access) project.id, group.id, group_access)
......
---
title: Project sharing to use specialized worker to calculate project authorizations
merge_request: 56606
author:
type: performance
--- ---
name: specialized_project_authorization_project_share_worker name: specialized_project_authorization_project_share_worker
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/32864 introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/32864
rollout_issue_url: rollout_issue_url:
milestone: '13.2' milestone: '13.2'
type: development type: development
group: group::access group: group::access
default_enabled: false default_enabled: true
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