Try to figure out what the heck is going on with that flaky test

This commit is contained in:
Claire 2024-08-16 17:33:39 +02:00
parent 1acbb628b9
commit ed5e68ca00

View File

@ -27,7 +27,10 @@ class UnfilterNotificationsWorker
private
def push_to_conversations!
notifications_with_private_mentions.reorder(nil).find_each(order: :desc) { |notification| AccountConversation.add_status(@recipient, notification.target_status) }
notifications_with_private_mentions.reorder(nil).find_each(order: :desc) do |notification|
puts "DEBUG: what is going on???? #{notification.type.inspect} #{notification.account.notifications.count} #{notification.from_account.statuses.count} #{notification.activity.inspect}" if notification.target_status.nil?
AccountConversation.add_status(@recipient, notification.target_status)
end
end
def unfilter_notifications!