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