about summary refs log tree commit diff
path: root/app/workers/poll_expiration_notify_worker.rb
diff options
context:
space:
mode:
authorChristian Schmidt <github@chsc.dk>2023-03-29 10:52:40 +0200
committerGitHub <noreply@github.com>2023-03-29 10:52:40 +0200
commiteb38e9df3129c2bc5ec3ecd1656336bf813747ce (patch)
treed7bcd6afef91c6db3abc62442eb608067b8e62c7 /app/workers/poll_expiration_notify_worker.rb
parentc384795731934963f309d608a4be92977889fb82 (diff)
Requeue expiration notification (#24311)
Diffstat (limited to 'app/workers/poll_expiration_notify_worker.rb')
-rw-r--r--app/workers/poll_expiration_notify_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/poll_expiration_notify_worker.rb b/app/workers/poll_expiration_notify_worker.rb
index 0e29a5f60..b7a60fab8 100644
--- a/app/workers/poll_expiration_notify_worker.rb
+++ b/app/workers/poll_expiration_notify_worker.rb
@@ -3,7 +3,7 @@
 class PollExpirationNotifyWorker
   include Sidekiq::Worker
 
-  sidekiq_options lock: :until_executed
+  sidekiq_options lock: :until_executing
 
   def perform(poll_id)
     @poll = Poll.find(poll_id)