Class: RepositoryCheck::SingleRepositoryWorker
- Inherits:
-
Object
- Object
- RepositoryCheck::SingleRepositoryWorker
- Includes:
- ApplicationWorker, RepositoryCheckQueue
- Defined in:
- app/workers/repository_check/single_repository_worker.rb
Overview
rubocop:disable Scalability/IdempotentWorker
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY
Constants included from WorkerAttributes
WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(project_id) ⇒ Object
8 9 10 11 12 13 |
# File 'app/workers/repository_check/single_repository_worker.rb', line 8 def perform(project_id) project = Project.find(project_id) healthy = project_healthy?(project) update_repository_check_status(project, healthy) end |