Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_refresh_with_low_urgency_worker.rb « authorized_project_update « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ca59a72adf0271b842e0937c95233bbabd7d713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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