Commit 2d89bff9 authored by Terri Chu's avatar Terri Chu

Merge branch '332963-remove-ci_idempotent_pipeline_process_worker' into 'master'

Remove the FF ci_idempotent_pipeline_process_worker

See merge request gitlab-org/gitlab!72297
parents 2f875163 30b3172a
......@@ -14,7 +14,7 @@ class PipelineProcessWorker
loggable_arguments 1
idempotent!
deduplicate :until_executing, feature_flag: :ci_idempotent_pipeline_process_worker
deduplicate :until_executing
# rubocop: disable CodeReuse/ActiveRecord
def perform(pipeline_id)
......
---
name: ci_idempotent_pipeline_process_worker
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/62410
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/332963
milestone: '14.0'
type: development
group: group::pipeline authoring
default_enabled: true
......@@ -29,16 +29,6 @@ RSpec.describe PipelineProcessWorker do
end
end
context 'when the FF ci_idempotent_pipeline_process_worker is disabled' do
before do
stub_feature_flags(ci_idempotent_pipeline_process_worker: false)
end
it 'is not deduplicated' do
expect(described_class).not_to be_deduplication_enabled
end
end
describe '#perform' do
context 'when pipeline exists' do
it 'processes pipeline' do
......
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