about summary refs log tree commit diff
path: root/app/services/post_status_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-05 13:50:21 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-05 13:50:21 +0200
commit3319473b2c493ea422bd6b68b3d08adb8b5acfac (patch)
tree7fa010ab90249ca4a091f3726fa0efedd9e857e1 /app/services/post_status_service.rb
parent2febc6ed65330a00f311b373d508ede1cb8749e5 (diff)
Move PubSubHubbub pinging to a background worker
It can take as much as 0.5s if not longer to complete
Diffstat (limited to 'app/services/post_status_service.rb')
-rw-r--r--app/services/post_status_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb
index 6e53c7e52..5cac6b70a 100644
--- a/app/services/post_status_service.rb
+++ b/app/services/post_status_service.rb
@@ -10,7 +10,7 @@ class PostStatusService < BaseService
     attach_media(status, media_ids)
     process_mentions_service.call(status)
     DistributionWorker.perform_async(status.id)
-    account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
+    HubPingWorker.perform_async(account.id)
     status
   end