Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/concerns/limited_capacity/worker.rb')
-rw-r--r--app/workers/concerns/limited_capacity/worker.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/app/workers/concerns/limited_capacity/worker.rb b/app/workers/concerns/limited_capacity/worker.rb
index af66d80b3e9..0a79c5c46d5 100644
--- a/app/workers/concerns/limited_capacity/worker.rb
+++ b/app/workers/concerns/limited_capacity/worker.rb
@@ -1,41 +1,5 @@
# frozen_string_literal: true
-# Usage:
-#
-# Worker that performs the tasks:
-#
-# class DummyWorker
-# include ApplicationWorker
-# include LimitedCapacity::Worker
-#
-# # For each job that raises any error, a worker instance will be disabled
-# # until the next schedule-run.
-# # If you wish to get around this, exceptions must by handled by the implementer.
-# #
-# def perform_work(*args)
-# end
-#
-# def remaining_work_count(*args)
-# 5
-# end
-#
-# def max_running_jobs
-# 25
-# end
-# end
-#
-# Cron worker to fill the pool of regular workers:
-#
-# class ScheduleDummyCronWorker
-# include ApplicationWorker
-# include CronjobQueue
-#
-# def perform(*args)
-# DummyWorker.perform_with_capacity(*args)
-# end
-# end
-#
-
module LimitedCapacity
module Worker
extend ActiveSupport::Concern