Commit c4263dfb authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix BackgroundJobs page

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent ae4ae2b2
......@@ -14,27 +14,21 @@
%table.table
%thead
%th USER
%th
%th PID
%th
%th CPU
%th
%th MEM
%th
%th STATE
%th
%th START
%th
%th COMMAND
%th
- @sidekiq_processes.split("\n").each do |process|
%tbody
- @sidekiq_processes.each do |process|
- next unless process.match(/(sidekiq \d+\.\d+\.\d+.+$)/)
- data = process.gsub!(/\s+/m, '|').strip.split('|')
- data = process.strip.split(' ')
%tr
- 6.times do
%td= Settings.gitlab.user
- 5.times do
%td= data.shift
%td
%td= data.join(" ")
%td= data.join(' ')
.clearfix
%p
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment