summaryrefslogtreecommitdiff
path: root/app/workers/authorized_project_update/user_refresh_from_replica_worker.rb
blob: 5ca9de63fd7db5f692a2241e6af95a0cac545b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module AuthorizedProjectUpdate
  class UserRefreshFromReplicaWorker < ::AuthorizedProjectsWorker
    feature_category :authentication_and_authorization
    urgency :low
    queue_namespace :authorized_project_update
    deduplicate :until_executing, including_scheduled: true

    idempotent!

    # This worker will start reading data from the replica database soon
    # Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/333219
  end
end