about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-12-11 22:23:11 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-12-11 22:23:11 +0100
commitf90133d2adecedeb9b9fbc1ca524cdf097272893 (patch)
tree56189844a6b2344cab6473b640396fa578ba1c53 /app/workers
parent6c60757e99085d273cdf95d13d2b9990e4edef87 (diff)
Thread resolving no longer needs to be separate from ProcessFeedService,
since that is only ever called in the background
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/removal_worker.rb2
-rw-r--r--app/workers/thread_resolve_worker.rb15
2 files changed, 1 insertions, 16 deletions
diff --git a/app/workers/removal_worker.rb b/app/workers/removal_worker.rb
index 7470c54f5..eae27c66f 100644
--- a/app/workers/removal_worker.rb
+++ b/app/workers/removal_worker.rb
@@ -6,4 +6,4 @@ class RemovalWorker
   def perform(status_id)
     RemoveStatusService.new.call(Status.find(status_id))
   end
-end
\ No newline at end of file
+end
diff --git a/app/workers/thread_resolve_worker.rb b/app/workers/thread_resolve_worker.rb
deleted file mode 100644
index 84eae73be..000000000
--- a/app/workers/thread_resolve_worker.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class ThreadResolveWorker
-  include Sidekiq::Worker
-
-  def perform(child_status_id, parent_url)
-    child_status  = Status.find(child_status_id)
-    parent_status = FetchRemoteStatusService.new.call(parent_url)
-
-    return if parent_status.nil?
-
-    child_status.thread = parent_status
-    child_status.save!
-  end
-end