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:
authorDouwe Maan <douwe@selenight.nl>2019-07-05 20:18:15 +0300
committerDouwe Maan <douwe@selenight.nl>2019-07-05 20:42:29 +0300
commit840e6fdb8f4194f6ca52b245d67199f3d2a41b3c (patch)
treec6084e0894484bc4c0625dbd5165ad0f85610edc
parent27c4b8aadd8e5137341c8966d7b7af3833521816 (diff)
Add queue_size method to ApplicationWorker
-rw-r--r--app/workers/concerns/application_worker.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/workers/concerns/application_worker.rb b/app/workers/concerns/application_worker.rb
index 25c3a945077..2b36ccb8304 100644
--- a/app/workers/concerns/application_worker.rb
+++ b/app/workers/concerns/application_worker.rb
@@ -1,5 +1,7 @@
# frozen_string_literal: true
+require 'sidekiq/api'
+
Sidekiq::Worker.extend ActiveSupport::Concern
module ApplicationWorker
@@ -44,6 +46,10 @@ module ApplicationWorker
get_sidekiq_options['queue'].to_s
end
+ def queue_size
+ Sidekiq::Queue.new(queue).size
+ end
+
def bulk_perform_async(args_list)
Sidekiq::Client.push_bulk('class' => self, 'args' => args_list)
end