diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-15 15:43:33 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-15 15:43:33 +0100 |
commit | a91c3ef6cef0fe5a1645c043e7d4a5ef96e82c4f (patch) | |
tree | 248345f3b94384a9bb2a1243ebc0845ebe1af01e /app/controllers | |
parent | cea28e0c1d91489756491f24a3e1376188d2bbf8 (diff) |
Delegate processing of incoming PuSH data to background workers
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/subscriptions_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/subscriptions_controller.rb b/app/controllers/api/subscriptions_controller.rb index c3aeee94d..058ae8f5e 100644 --- a/app/controllers/api/subscriptions_controller.rb +++ b/app/controllers/api/subscriptions_controller.rb @@ -16,7 +16,7 @@ class Api::SubscriptionsController < ApiController subscription = @account.subscription(api_subscription_url(@account.id)) if subscription.verify(body, request.headers['HTTP_X_HUB_SIGNATURE']) - ProcessFeedService.new.call(body, @account) + ProcessingWorker.perform_async(@account.id, body.force_encoding('UTF-8')) head 201 else head 202 |