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 ReactiveCachingWorker
class ReactiveCachingWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category_not_owned!
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@
 
# The RebaseWorker must be wrapped in important concurrency code, so should only
# be scheduled via MergeRequest#rebase_async
class RebaseWorker
class RebaseWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category :source_code_management
Loading
Loading
# frozen_string_literal: true
 
class RemoteMirrorNotificationWorker
class RemoteMirrorNotificationWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
feature_category :source_code_management
Loading
Loading
# frozen_string_literal: true
 
class RemoveExpiredGroupLinksWorker
class RemoveExpiredGroupLinksWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include CronjobQueue # rubocop:disable Scalability/CronWorkerContext
 
Loading
Loading
# frozen_string_literal: true
 
class RemoveExpiredMembersWorker
class RemoveExpiredMembersWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include CronjobQueue # rubocop:disable Scalability/CronWorkerContext
 
Loading
Loading
# frozen_string_literal: true
 
class RemoveUnreferencedLfsObjectsWorker
class RemoveUnreferencedLfsObjectsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
Loading
Loading
# frozen_string_literal: true
 
class RepositoryArchiveCacheWorker
class RepositoryArchiveCacheWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
Loading
Loading
# frozen_string_literal: true
 
module RepositoryCheck
class BatchWorker
class BatchWorker # rubocop:disable Scalability/IdempotentWorker
prepend_if_ee('::EE::RepositoryCheck::BatchWorker') # rubocop: disable Cop/InjectEnterpriseEditionModule
 
include ApplicationWorker
Loading
Loading
# frozen_string_literal: true
 
module RepositoryCheck
class ClearWorker
class ClearWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include RepositoryCheckQueue
 
Loading
Loading
# frozen_string_literal: true
 
module RepositoryCheck
class DispatchWorker
class DispatchWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
Loading
Loading
# frozen_string_literal: true
 
module RepositoryCheck
class SingleRepositoryWorker
class SingleRepositoryWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include RepositoryCheckQueue
 
Loading
Loading
# frozen_string_literal: true
 
class RepositoryCleanupWorker
class RepositoryCleanupWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
 
sidekiq_options retry: 3
Loading
Loading
# frozen_string_literal: true
 
class RepositoryForkWorker
class RepositoryForkWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include Gitlab::ShellAdapter
include ProjectStartImport
Loading
Loading
# frozen_string_literal: true
 
class RepositoryImportWorker
class RepositoryImportWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include ExceptionBacktrace
include ProjectStartImport
Loading
Loading
# frozen_string_literal: true
 
class RepositoryRemoveRemoteWorker
class RepositoryRemoveRemoteWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include ExclusiveLeaseGuard
 
Loading
Loading
# frozen_string_literal: true
 
class RepositoryUpdateRemoteMirrorWorker
class RepositoryUpdateRemoteMirrorWorker # rubocop:disable Scalability/IdempotentWorker
UpdateError = Class.new(StandardError)
 
include ApplicationWorker
Loading
Loading
# frozen_string_literal: true
 
class RequestsProfilesWorker
class RequestsProfilesWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
Loading
Loading
# frozen_string_literal: true
 
class RunPipelineScheduleWorker
class RunPipelineScheduleWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
# frozen_string_literal: true
 
class ScheduleMigrateExternalDiffsWorker
class ScheduleMigrateExternalDiffsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext:
# This schedules the `MigrateExternalDiffsWorker`
Loading
Loading
# frozen_string_literal: true
 
class SelfMonitoringProjectCreateWorker
class SelfMonitoringProjectCreateWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
include ExclusiveLeaseGuard
include SelfMonitoringProjectWorker
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