1
0
mirror of https://framagit.org/tykayn/mastodon.git synced 2023-08-25 08:33:12 +02:00

10 lines
198 B
Ruby
Raw Normal View History

2016-11-28 13:36:47 +01:00
# frozen_string_literal: true
class Pubsubhubbub::DeliveryWorker
include Sidekiq::Worker
sidekiq_options queue: 'push', retry: 3, dead: false
def perform(subscription_id, payload); end
2016-11-28 13:36:47 +01:00
end