From 2c8b4f7fb4b65e0ad3ab736f14e046c4c6dcb375 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Fri, 15 Jan 2021 20:43:07 -0500 Subject: [PATCH] TEST Removing all streaming for now 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TEST • Removing: - all streaming for now 3 from post status --- app/services/post_status_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 5edc67bd..8d4aa557 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -116,7 +116,7 @@ class PostStatusService < BaseService def postprocess_status! LinkCrawlWorker.perform_async(@status.id) - DistributionWorker.perform_async(@status.id) + # DistributionWorker.perform_async(@status.id) ExpiringStatusWorker.perform_at(@status.expires_at, @status.id) if @status.expires_at && @account.is_pro PollExpirationNotifyWorker.perform_at(@status.poll.expires_at, @status.poll.id) if @status.poll end