debian-mirror-gitlab/app/workers/authorized_project_update/user_refresh_with_low_urgency_worker.rb

13 lines
337 B
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
module AuthorizedProjectUpdate
class UserRefreshWithLowUrgencyWorker < ::AuthorizedProjectsWorker
feature_category :authentication_and_authorization
urgency :low
queue_namespace :authorized_project_update
2020-06-23 00:09:42 +05:30
deduplicate :until_executing, including_scheduled: true
2020-05-24 23:13:21 +05:30
idempotent!
end
end