Class: Projects::RecordTargetPlatformsWorker
- Inherits:
-
Object
- Object
- Projects::RecordTargetPlatformsWorker
- Includes:
- ApplicationWorker, ExclusiveLeaseGuard
- Defined in:
- app/workers/projects/record_target_platforms_worker.rb
Constant Summary collapse
- LEASE_TIMEOUT =
1.hour.to_i
- APPLE_PLATFORM_LANGUAGES =
%w[swift objective-c].freeze
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY, ApplicationWorker::SAFE_PUSH_BULK_LIMIT
Constants included from Gitlab::Loggable
Constants included from WorkerAttributes
WorkerAttributes::DEFAULT_DATA_CONSISTENCY, WorkerAttributes::DEFAULT_DATA_CONSISTENCY_PER_DB, WorkerAttributes::DEFAULT_DEFER_DELAY, WorkerAttributes::LOAD_BALANCED_DATA_CONSISTENCIES, WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_DATA_CONSISTENCIES, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
Methods included from ExclusiveLeaseGuard
#exclusive_lease, #lease_taken_log_level, #lease_taken_message, #log_lease_taken, #release_lease, #renew_lease!, #try_obtain_lease
Methods included from Gitlab::Loggable
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(project_id) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 |
# File 'app/workers/projects/record_target_platforms_worker.rb', line 17 def perform(project_id) @project = Project.find_by_id(project_id) return unless project return unless detector_service try_obtain_lease do @target_platforms = Projects::RecordTargetPlatformsService.new(project, detector_service).execute end end |