about summary refs log tree commit diff
path: root/app/workers/processing_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/processing_worker.rb')
-rw-r--r--app/workers/processing_worker.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/workers/processing_worker.rb b/app/workers/processing_worker.rb
deleted file mode 100644
index 978c3aba2..000000000
--- a/app/workers/processing_worker.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-# frozen_string_literal: true
-
-class ProcessingWorker
-  include Sidekiq::Worker
-
-  sidekiq_options backtrace: true
-
-  def perform(account_id, body)
-    ProcessFeedService.new.call(body, Account.find(account_id), override_timestamps: true)
-  end
-end