Commit bb6d1572 authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'mc/bug/pipeline-cache-invalid' into 'master'

Expire pipeline cache on job update

Closes #48024

See merge request gitlab-org/gitlab-ce!28432
parents cd140f93 404a541d
...@@ -30,6 +30,7 @@ class BuildFinishedWorker ...@@ -30,6 +30,7 @@ class BuildFinishedWorker
# We execute these async as these are independent operations. # We execute these async as these are independent operations.
BuildHooksWorker.perform_async(build.id) BuildHooksWorker.perform_async(build.id)
ArchiveTraceWorker.perform_async(build.id) ArchiveTraceWorker.perform_async(build.id)
ExpirePipelineCacheWorker.perform_async(build.pipeline_id)
ChatNotificationWorker.perform_async(build.id) if build.pipeline.chat? ChatNotificationWorker.perform_async(build.id) if build.pipeline.chat?
end end
end end
...@@ -17,6 +17,7 @@ describe BuildFinishedWorker do ...@@ -17,6 +17,7 @@ describe BuildFinishedWorker do
expect_any_instance_of(BuildCoverageWorker).to receive(:perform) expect_any_instance_of(BuildCoverageWorker).to receive(:perform)
expect(BuildHooksWorker).to receive(:perform_async) expect(BuildHooksWorker).to receive(:perform_async)
expect(ArchiveTraceWorker).to receive(:perform_async) expect(ArchiveTraceWorker).to receive(:perform_async)
expect(ExpirePipelineCacheWorker).to receive(:perform_async)
described_class.new.perform(build.id) described_class.new.perform(build.id)
end end
......
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