summaryrefslogtreecommitdiff
path: root/app/workers/ci/pipelines/create_artifact_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/ci/pipelines/create_artifact_worker.rb')
-rw-r--r--app/workers/ci/pipelines/create_artifact_worker.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/workers/ci/pipelines/create_artifact_worker.rb b/app/workers/ci/pipelines/create_artifact_worker.rb
deleted file mode 100644
index 220df975503..00000000000
--- a/app/workers/ci/pipelines/create_artifact_worker.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-module Ci
- module Pipelines
- class CreateArtifactWorker
- include ApplicationWorker
- include PipelineBackgroundQueue
-
- idempotent!
-
- def perform(pipeline_id)
- Ci::Pipeline.find_by_id(pipeline_id).try do |pipeline|
- Ci::Pipelines::CreateArtifactService.new.execute(pipeline)
- end
- end
- end
- end
-end