commit: f90133d2adecedeb9b9fbc1ca524cdf097272893
parent: 6c60757e99085d273cdf95d13d2b9990e4edef87
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Sun, 11 Dec 2016 22:23:11 +0100
Thread resolving no longer needs to be separate from ProcessFeedService,
since that is only ever called in the background
Diffstat:
3 files changed, 14 insertions(+), 18 deletions(-)
diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb
@@ -121,7 +121,8 @@ class ProcessFeedService < BaseService
def find_or_resolve_status(parent, uri, url)
status = find_status(uri)
- ThreadResolveWorker.perform_async(parent.id, url) if status.nil?
+
+ ResolveThread.new.call(parent, url) if status.nil?
status
end
@@ -242,4 +243,15 @@ class ProcessFeedService < BaseService
"#{username}@#{domain}"
end
end
+
+ class ResolveThread
+ def call(child_status, parent_url)
+ parent_status = FetchRemoteStatusService.new.call(parent_url)
+
+ return if parent_status.nil?
+
+ child_status.thread = parent_status
+ child_status.save!
+ end
+ end
end
diff --git 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
@@ -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