about summary refs log tree commit diff
path: root/app/workers/distribution_worker.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-05 21:41:50 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-05 21:43:10 +0200
commit5442083b3c44c731679fc489568bf7f70a807a39 (patch)
tree009c6f57e1707356fc2a78822bae7baf2321b405 /app/workers/distribution_worker.rb
parentbafbf63fcca81ae9dce3a40959b8a47e5fcfc6ac (diff)
Split SalmonWorker into smaller parts, move profile updating into another job
Diffstat (limited to 'app/workers/distribution_worker.rb')
-rw-r--r--app/workers/distribution_worker.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/workers/distribution_worker.rb b/app/workers/distribution_worker.rb
index 9a2867ea6..f7953689b 100644
--- a/app/workers/distribution_worker.rb
+++ b/app/workers/distribution_worker.rb
@@ -4,10 +4,7 @@ class DistributionWorker < ApplicationWorker
   include Sidekiq::Worker
 
   def perform(status_id)
-    status = Status.find(status_id)
-
-    FanOutOnWriteService.new.call(status)
-    WarmCacheService.new.call(status)
+    FanOutOnWriteService.new.call(Status.find(status_id))
   rescue ActiveRecord::RecordNotFound
     info("Couldn't find the status")
   end