Skip to content
代码片段 群组 项目
未验证 提交 ad65ea09 编辑于 作者: Erick Bajao's avatar Erick Bajao 提交者: GitLab
浏览文件

Merge branch 'alberts-move-ff-ci_job_artifacts_backlog_large_loop_limit-to-ops' into 'master'

Move feature flag to ops type

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/136030



Merged-by: default avatarErick Bajao <fbajao@gitlab.com>
Approved-by: default avatarErick Bajao <fbajao@gitlab.com>
Co-authored-by: default avatarAlbert Salim <asalim@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -17,7 +17,11 @@ def initialize ...@@ -17,7 +17,11 @@ def initialize
@removed_count = 0 @removed_count = 0
@locked_count = 0 @locked_count = 0
@start_at = Time.current @start_at = Time.current
@loop_limit = Feature.enabled?(:ci_job_artifacts_backlog_large_loop_limit) ? LARGE_LOOP_LIMIT : LOOP_LIMIT @loop_limit = if Feature.enabled?(:ci_job_artifacts_backlog_large_loop_limit, type: :ops)
LARGE_LOOP_LIMIT
else
LOOP_LIMIT
end
end end
def execute def execute
...@@ -35,9 +39,9 @@ def update_locked_status_on_unknown_artifacts ...@@ -35,9 +39,9 @@ def update_locked_status_on_unknown_artifacts
unknown_status_build_ids = safely_ordered_ci_job_artifacts_locked_unknown_relation.pluck_job_id.uniq unknown_status_build_ids = safely_ordered_ci_job_artifacts_locked_unknown_relation.pluck_job_id.uniq
locked_pipe_build_ids = ::Ci::Build locked_pipe_build_ids = ::Ci::Build
.with_pipeline_locked_artifacts .with_pipeline_locked_artifacts
.id_in(unknown_status_build_ids) .id_in(unknown_status_build_ids)
.pluck_primary_key .pluck_primary_key
@locked_count += update_unknown_artifacts(locked_pipe_build_ids, Ci::JobArtifact.lockeds[:artifacts_locked]) @locked_count += update_unknown_artifacts(locked_pipe_build_ids, Ci::JobArtifact.lockeds[:artifacts_locked])
......
...@@ -3,6 +3,6 @@ name: ci_job_artifacts_backlog_large_loop_limit ...@@ -3,6 +3,6 @@ name: ci_job_artifacts_backlog_large_loop_limit
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/76509 introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/76509
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/347151 rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/347151
milestone: '14.10' milestone: '14.10'
type: development type: ops
group: group::pipeline security group: group::pipeline security
default_enabled: false default_enabled: false
...@@ -87,19 +87,39 @@ ...@@ -87,19 +87,39 @@
end end
context 'due to @loop_limit' do context 'due to @loop_limit' do
before do context 'when feature flag ci_job_artifacts_backlog_large_loop_limit is enabled' do
stub_const("#{described_class}::LARGE_LOOP_LIMIT", 1) before do
end stub_const("#{described_class}::LARGE_LOOP_LIMIT", 1)
end
it 'affects the most recently expired artifact first' do it 'affects the most recently expired artifact first' do
subject subject
expect(unknown_locked_artifact.reload.locked).to eq('artifacts_locked') expect(unknown_locked_artifact.reload.locked).to eq('artifacts_locked')
expect(unknown_unlocked_artifact.reload.locked).to eq('unknown') expect(unknown_unlocked_artifact.reload.locked).to eq('unknown')
end
it 'reports the number of destroyed artifacts' do
is_expected.to eq({ removed: 0, locked: 1 })
end
end end
it 'reports the number of destroyed artifacts' do context 'when feature flag ci_job_artifacts_backlog_large_loop_limit is disabled' do
is_expected.to eq({ removed: 0, locked: 1 }) before do
stub_feature_flags(ci_job_artifacts_backlog_large_loop_limit: false)
stub_const("#{described_class}::LOOP_LIMIT", 1)
end
it 'affects the most recently expired artifact first' do
subject
expect(unknown_locked_artifact.reload.locked).to eq('artifacts_locked')
expect(unknown_unlocked_artifact.reload.locked).to eq('unknown')
end
it 'reports the number of destroyed artifacts' do
is_expected.to eq({ removed: 0, locked: 1 })
end
end end
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册