summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-03-26 18:22:54 +0100
committerGitHub <noreply@github.com>2021-03-26 18:22:54 +0100
commit59f94593d059239c28ab5fb8e2a0c23ce2590254 (patch)
tree534b643666e1a934f2df289185b28a2cd3ca9a0f /app
parentdd1eb9918ad54fec3a524a53e339ee6c8be9de11 (diff)
Add warning in admin dashboard if some required queues are not handled (#15954)
Diffstat (limited to 'app')
-rw-r--r--app/controllers/admin/dashboard_controller.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/admin/dashboard_controller.rb b/app/controllers/admin/dashboard_controller.rb
index 7c2951acbb0..24162ec6393 100644
--- a/app/controllers/admin/dashboard_controller.rb
+++ b/app/controllers/admin/dashboard_controller.rb
@@ -3,7 +3,13 @@ require 'sidekiq/api'
module Admin
class DashboardController < BaseController
+ SIDEKIQ_QUEUES = %w(default push mailers pull scheduler).freeze
+
def index
+ missing_queues = Sidekiq::ProcessSet.new.reduce(SIDEKIQ_QUEUES) { |queues, process| queues - process['queues'] }
+
+ flash.now[:alert] = I18n.t('admin.dashboard.misconfigured_sidekiq_alert', queues: missing_queues.join(', ')) unless missing_queues.empty?
+
@users_count = User.count
@pending_users_count = User.pending.count
@registrations_week = Redis.current.get("activity:accounts:local:#{current_week}") || 0