Fix multiple workers for the same scheduled status being queueable (#9875)

This commit is contained in:
Eugen Rochko 2019-01-20 12:57:05 +01:00 committed by GitHub
parent 6b91da97bb
commit 31e7940de5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,8 @@
class PublishScheduledStatusWorker
include Sidekiq::Worker
sidekiq_options unique: :until_executed
def perform(scheduled_status_id)
scheduled_status = ScheduledStatus.find(scheduled_status_id)
scheduled_status.destroy!