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
- ANDROID_PLATFORM_LANGUAGES =
%w(java kotlin).freeze
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY, ApplicationWorker::SAFE_PUSH_BULK_LIMIT
Constants included from WorkerAttributes
WorkerAttributes::DEFAULT_DATA_CONSISTENCY, WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_DATA_CONSISTENCIES, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
Methods included from ExclusiveLeaseGuard
#exclusive_lease, #log_error, #release_lease, #renew_lease!, #try_obtain_lease
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(project_id) ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 |
# File 'app/workers/projects/record_target_platforms_worker.rb', line 18 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 |