Skip to content
Snippets Groups Projects
Commit 33795139 authored by GitLab Bot's avatar GitLab Bot
Browse files

Add latest changes from gitlab-org/gitlab@master

parent c7e385e2
No related branches found
No related tags found
No related merge requests found
Showing
with 20 additions and 20 deletions
# frozen_string_literal: true
 
class PagesDomainVerificationWorker
class PagesDomainVerificationWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category :pages
Loading
Loading
# frozen_string_literal: true
 
class PagesWorker
class PagesWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
sidekiq_options retry: 3
Loading
Loading
# frozen_string_literal: true
 
module PersonalAccessTokens
class ExpiringWorker
class ExpiringWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include CronjobQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PipelineHooksWorker
class PipelineHooksWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PipelineMetricsWorker
class PipelineMetricsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PipelineNotificationWorker
class PipelineNotificationWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PipelineProcessWorker
class PipelineProcessWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PipelineScheduleWorker
class PipelineScheduleWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include CronjobQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PipelineSuccessWorker
class PipelineSuccessWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PipelineUpdateWorker
class PipelineUpdateWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
# frozen_string_literal: true
 
class PostReceive
class PostReceive # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category :source_code_management
Loading
Loading
Loading
Loading
@@ -7,7 +7,7 @@
# result of this the workload of this worker should be kept to a bare minimum.
# Consider using an extra worker if you need to add any extra (and potentially
# slow) processing of commits.
class ProcessCommitWorker
class ProcessCommitWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category :source_code_management
Loading
Loading
# frozen_string_literal: true
 
# Worker for updating any project specific caches.
class ProjectCacheWorker
class ProjectCacheWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
latency_sensitive_worker!
Loading
Loading
# frozen_string_literal: true
 
class ProjectDailyStatisticsWorker
class ProjectDailyStatisticsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category :source_code_management
Loading
Loading
# frozen_string_literal: true
 
class ProjectDestroyWorker
class ProjectDestroyWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include ExceptionBacktrace
 
Loading
Loading
# frozen_string_literal: true
 
class ProjectExportWorker
class ProjectExportWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include ExceptionBacktrace
 
Loading
Loading
# frozen_string_literal: true
 
class ProjectServiceWorker
class ProjectServiceWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
sidekiq_options dead: false
Loading
Loading
# frozen_string_literal: true
 
# Worker for updating any project specific caches.
class PropagateServiceTemplateWorker
class PropagateServiceTemplateWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category :source_code_management
Loading
Loading
# frozen_string_literal: true
 
class PruneOldEventsWorker
class PruneOldEventsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@
 
# Worker that deletes a fixed number of outdated rows from the "web_hook_logs"
# table.
class PruneWebHookLogsWorker
class PruneWebHookLogsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment