Improve a query in WebPushNotificationWorker (#4234)

lolsob-rspec
Akihiko Odaki 2017-07-17 18:03:48 +09:00 committed by Eugen Rochko
parent 71a02eb2d9
commit 6eff4496e3
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class WebPushNotificationWorker
recipient = Account.find(recipient_id) recipient = Account.find(recipient_id)
notification = Notification.find(notification_id) notification = Notification.find(notification_id)
sessions_with_subscriptions = recipient.user.session_activations.reject { |session| session.web_push_subscription.nil? } sessions_with_subscriptions = recipient.user.session_activations.where.not(web_push_subscription: nil)
sessions_with_subscriptions.each do |session| sessions_with_subscriptions.each do |session|
begin begin