debian-mirror-gitlab/app/workers/authorized_project_update/user_refresh_with_low_urgency_worker.rb
2020-06-23 00:09:42 +05:30

13 lines
337 B
Ruby

# frozen_string_literal: true
module AuthorizedProjectUpdate
class UserRefreshWithLowUrgencyWorker < ::AuthorizedProjectsWorker
feature_category :authentication_and_authorization
urgency :low
queue_namespace :authorized_project_update
deduplicate :until_executing, including_scheduled: true
idempotent!
end
end