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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/database/ci_project_mirrors_consistency_check_worker.rb')
-rw-r--r--app/workers/database/ci_project_mirrors_consistency_check_worker.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/workers/database/ci_project_mirrors_consistency_check_worker.rb b/app/workers/database/ci_project_mirrors_consistency_check_worker.rb
index 84052ab238b..5f10310f8d6 100644
--- a/app/workers/database/ci_project_mirrors_consistency_check_worker.rb
+++ b/app/workers/database/ci_project_mirrors_consistency_check_worker.rb
@@ -6,15 +6,13 @@ module Database
include CronjobQueue # rubocop: disable Scalability/CronWorkerContext
sidekiq_options retry: false
- feature_category :sharding
+ feature_category :pods
data_consistency :sticky
idempotent!
version 1
def perform
- return if Feature.disabled?(:ci_project_mirrors_consistency_check)
-
results = ConsistencyCheckService.new(
source_model: Project,
target_model: Ci::ProjectMirror,