sidekiq-undertaker 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +9 -2
  3. data/.gitignore +1 -0
  4. data/.rubocop.yml +0 -1
  5. data/.rubocop_codeclimate.yml +5 -0
  6. data/.rubocop_todo.yml +1 -1
  7. data/.travis.yml +9 -6
  8. data/lib/sidekiq/undertaker/version.rb +1 -1
  9. data/lib/sidekiq/undertaker/web_extension/api_helpers.rb +5 -1
  10. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_all_failures_and_errors/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv5.approved.txt +4 -1
  11. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_all_failures_and_errors/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +4 -1
  12. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv5.approved.txt +4 -1
  13. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +4 -1
  14. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/with_pagination/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv5.approved.txt +1303 -0
  15. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/with_pagination/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +1304 -0
  16. data/spec/sidekiq/undertaker/dead_jobs_spec.rb +1 -1
  17. data/spec/sidekiq/undertaker/job_filter_spec.rb +1 -0
  18. data/spec/sidekiq/undertaker/web_extension_spec.rb +11 -1
  19. data/web/views/morgue.erb +3 -5
  20. metadata +49 -45
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35f037917b86646a847908a9acbdfc3a89e709f88c13d4e93f90530c75a42d8e
4
- data.tar.gz: 47ee7f6df797f92b5b59202abaf4db47c574589bd3e7f234a95657d631ca5ff0
3
+ metadata.gz: 84ea1142410fa8e5e4bce66533d039fc07713e5efc04cdc2bb11e5d669139154
4
+ data.tar.gz: b083a31341c8a3bc757f650a4c8ad5c4a9432e3c88a90834bbee3798fb7eba16
5
5
  SHA512:
6
- metadata.gz: f66fd051750700f1004fd7ea0312b13461fa08dc239237bf4c45a97aad729c4ce56a01afc9986201983b77f5989e2266ec75ce421f14b83669eab257ff7c03e4
7
- data.tar.gz: 55d04b18b25576869e5294967c9928d97e3308093e0a2b9838fe0f76c6235207dc1dcc94cf6a6d14cc16a56b5a8fc75f35fe6670871d9bec84a9ae16df9aa3e3
6
+ metadata.gz: 53a728eb87a908f4329a5d5ffb882d9a107ae4244bd684e7e6198e509e24aa58f8d10b126a8425e3c4852508ef2409c5fe38b9a3543693ff2425bcb8cd03be1f
7
+ data.tar.gz: 4312adefb75d7c6d2e794a15ad98fb442a73fa3acd43042f25807d47daf826a864e6c05f5824a2c834e560fe4b993f3386e680111c45094dc06b7723a444fec2
@@ -1,6 +1,13 @@
1
1
  version: "2"
2
+ prepare:
3
+ fetch:
4
+ - url: "https://raw.githubusercontent.com/runtastic/rt_rubocop_defaults/master/config/default.yml"
5
+ path: .rt_rubocop_defaults.yml
2
6
  plugins:
3
7
  git-legal:
4
8
  enabled: true
5
- # rubocop:
6
- # enabled: true
9
+ rubocop:
10
+ enabled: true
11
+ channel: rubocop-0-77
12
+ config:
13
+ file: .rubocop_codeclimate.yml
data/.gitignore CHANGED
@@ -9,6 +9,7 @@ _yardoc
9
9
  *.gem
10
10
  *.rbc
11
11
  *.received.*
12
+ *.rt_rubocop_defaults.yml
12
13
  coverage
13
14
  doc/
14
15
  Gemfile.lock
@@ -1,5 +1,4 @@
1
1
  require:
2
2
  - rubocop-rspec
3
3
  - rt_rubocop_defaults
4
-
5
4
  inherit_from: .rubocop_todo.yml
@@ -0,0 +1,5 @@
1
+ require:
2
+ - rubocop-rspec
3
+ inherit_from:
4
+ - .rt_rubocop_defaults.yml
5
+ - .rubocop_todo.yml
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-12-06 21:33:12 +0100 using RuboCop version 0.77.0.
3
+ # on 2020-01-30 23:52:34 +0100 using RuboCop version 0.77.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -1,11 +1,12 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.4.9
5
- - 2.5.7
4
+ - 2.7.0
6
5
  - 2.6.5
7
- - jruby-9.1.17.0
6
+ - 2.5.7
7
+ - 2.4.9
8
8
  - jruby-9.2.9.0
9
+ - jruby-9.1.17.0
9
10
  # - truffleruby # https://github.com/oracle/truffleruby/issues/1398
10
11
  jdk:
11
12
  - oraclejdk11
@@ -18,16 +19,18 @@ env:
18
19
 
19
20
  matrix:
20
21
  exclude:
21
- - rvm: 2.4.9
22
+ - rvm: 2.7.0
23
+ env: "JRUBY_OPTS='-Xcompile.invokedynamic=true --debug'"
24
+ - rvm: 2.6.5
22
25
  env: "JRUBY_OPTS='-Xcompile.invokedynamic=true --debug'"
23
26
  - rvm: 2.5.7
24
27
  env: "JRUBY_OPTS='-Xcompile.invokedynamic=true --debug'"
25
- - rvm: 2.6.5
28
+ - rvm: 2.4.9
26
29
  env: "JRUBY_OPTS='-Xcompile.invokedynamic=true --debug'"
27
30
  allow_failures:
31
+ - rvm: 2.4.9
28
32
  - rvm: truffleruby
29
33
  - env: "JRUBY_OPTS='-Xcompile.invokedynamic=true --debug'"
30
-
31
34
  services:
32
35
  - redis-server
33
36
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sidekiq
4
4
  module Undertaker
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.1"
6
6
  end
7
7
  end
@@ -35,7 +35,7 @@ module Sidekiq
35
35
  # Display dead jobs as list
36
36
  @dead_jobs = @dead_jobs.map(&:job)
37
37
 
38
- @undertaker_path = "undertaker/#{@req_job_class}/#{@req_error_class}/#{@req_bucket_name}"
38
+ @undertaker_path = "undertaker/morgue/#{@req_job_class}/#{@req_error_class}/#{@req_bucket_name}"
39
39
 
40
40
  # Pagination
41
41
  @total_dead = @dead_jobs.size
@@ -43,6 +43,10 @@ module Sidekiq
43
43
  @count = 50 # per page
44
44
  @dead_jobs = @dead_jobs[((@current_page - 1) * @count), @count]
45
45
 
46
+ # HINT: For making the pagination from sidekiq work, @total_size needs to be set
47
+ # https://github.com/mperham/sidekiq/blob/master/web/views/_paging.erb#L1
48
+ @total_size = @total_dead
49
+
46
50
  # Remove unrelated arguments to allow _paginate url to be clean
47
51
  # Hack to continue to reuse sidekiq's _pagination template
48
52
  params.delete("job_class")
@@ -0,0 +1,1303 @@
1
+ <!doctype html>
2
+ <html dir="ltr">
3
+ <head>
4
+ <title>[TEST] Sidekiq</title>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0" />
7
+
8
+ <link href="/sidekiq/stylesheets/bootstrap.css" media="screen" rel="stylesheet" type="text/css" />
9
+
10
+
11
+ <link href="/sidekiq/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
12
+
13
+
14
+ <link rel="shortcut icon" type="image/ico" href="/sidekiq/images/favicon.ico" />
15
+ <script type="text/javascript" src="/sidekiq/javascripts/application.js"></script>
16
+ <meta name="google" content="notranslate" />
17
+
18
+ </head>
19
+ <body class="admin" data-poll-path="" data-locale="en">
20
+ <div class="navbar navbar-default navbar-fixed-top">
21
+ <div class="container-fluid">
22
+ <div class="navbar-header" data-navbar="static">
23
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-menu">
24
+ <span class="icon-bar"></span>
25
+ <span class="icon-bar"></span>
26
+ <span class="icon-bar"></span>
27
+ </button>
28
+ <div class="navbar-toggle collapsed navbar-livereload">
29
+
30
+
31
+ <a id="live-poll" class="btn btn-primary" href="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour?poll=true">Live Poll</a>
32
+
33
+
34
+
35
+
36
+ </div>
37
+ <a class="navbar-brand" href="/sidekiq/">
38
+ Sidekiq
39
+ <span class="status">
40
+ <i class="status-sprite status-idle"></i>
41
+ idle
42
+ </span>
43
+
44
+ </a>
45
+ </div>
46
+
47
+ <div class="collapse navbar-collapse" id="navbar-menu">
48
+ <ul class="nav navbar-nav" data-navbar="static">
49
+
50
+
51
+ <li class="">
52
+ <a href="/sidekiq/">Dashboard</a>
53
+ </li>
54
+
55
+
56
+
57
+ <li class="">
58
+ <a href="/sidekiq/busy">Busy</a>
59
+ </li>
60
+
61
+
62
+
63
+ <li class="">
64
+ <a href="/sidekiq/queues">Queues</a>
65
+ </li>
66
+
67
+
68
+
69
+ <li class="">
70
+ <a href="/sidekiq/retries">Retries</a>
71
+ </li>
72
+
73
+
74
+
75
+ <li class="">
76
+ <a href="/sidekiq/scheduled">Scheduled</a>
77
+ </li>
78
+
79
+
80
+
81
+ <li class="">
82
+ <a href="/sidekiq/morgue">Dead</a>
83
+ </li>
84
+
85
+
86
+
87
+
88
+ <li class="" data-navbar="custom-tab">
89
+ <a href="/sidekiq/undertaker/filter">Undertaker</a>
90
+ </li>
91
+
92
+
93
+ <li class="navbar-livereload">
94
+ <div class="poll-wrapper">
95
+
96
+
97
+ <a id="live-poll" class="btn btn-primary" href="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour?poll=true">Live Poll</a>
98
+
99
+
100
+
101
+
102
+ </div>
103
+ </li>
104
+ </ul>
105
+ </div>
106
+ </div>
107
+ </div>
108
+
109
+ <div id="page">
110
+ <div class="container">
111
+ <div class="row">
112
+ <div class="col-sm-12 summary_bar">
113
+ <ul class="list-unstyled summary row">
114
+ <li class="processed col-sm-1">
115
+ <span class="count">0</span>
116
+ <span class="desc">Processed</span>
117
+ </li>
118
+ <li class="failed col-sm-1">
119
+ <span class="count">0</span>
120
+ <span class="desc">Failed</span>
121
+ </li>
122
+ <li class="busy col-sm-1">
123
+ <a href="/sidekiq/busy">
124
+ <span class="count">0</span>
125
+ <span class="desc">Busy</span>
126
+ </a>
127
+ </li>
128
+ <li class="enqueued col-sm-1">
129
+ <a href="/sidekiq/queues">
130
+ <span class="count">0</span>
131
+ <span class="desc">Enqueued</span>
132
+ </a>
133
+ </li>
134
+ <li class="retries col-sm-1">
135
+ <a href="/sidekiq/retries">
136
+ <span class="count">0</span>
137
+ <span class="desc">Retries</span>
138
+ </a>
139
+ </li>
140
+ <li class="scheduled col-sm-1">
141
+ <a href="/sidekiq/scheduled">
142
+ <span class="count">0</span>
143
+ <span class="desc">Scheduled</span>
144
+ </a>
145
+ </li>
146
+ <li class="dead col-sm-1">
147
+ <a href="/sidekiq/morgue">
148
+ <span class="count">54</span>
149
+ <span class="desc">Dead</span>
150
+ </a>
151
+ </li>
152
+ </ul>
153
+
154
+ </div>
155
+
156
+ <div class="col-sm-12">
157
+ <header class="row head">
158
+ <div class="col-sm-12">
159
+ <h3>
160
+ <b>52</b> dead jobs
161
+ of <b>HardWorker</b> class
162
+ with <b>RuntimeError</b> exception
163
+ in <b>1_hour</b> bucket
164
+ </h3>
165
+ </div>
166
+ <div class="col-sm-12">
167
+ <div class="col-sm-4">
168
+
169
+ <ul class="pagination pull-right flip">
170
+ <li class="disabled">
171
+ <a href="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour?page=1">&laquo;</a>
172
+ </li>
173
+
174
+ <li class="disabled">
175
+ <a href="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour?page=1">1</a>
176
+ </li>
177
+
178
+ <li>
179
+ <a href="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour?page=2">2</a>
180
+ </li>
181
+
182
+ <li class="">
183
+ <a href="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour?page=2">&raquo;</a>
184
+ </li>
185
+ </ul>
186
+
187
+
188
+ </div>
189
+ </div>
190
+ </header>
191
+
192
+
193
+ <form action="/sidekiq/undertaker/morgue" method="post">
194
+ <input type='hidden' name='authenticity_token' value=''/>
195
+ <table class="table table-striped table-bordered table-white">
196
+ <thead>
197
+ <tr>
198
+ <th width="20px" class="table-checkbox">
199
+ <label>
200
+ <input type="checkbox" class="check_all" />
201
+ </label>
202
+ </th>
203
+ <th width="25%">Last Retry</th>
204
+ <th>Queue</th>
205
+ <th>Job</th>
206
+ <th>Arguments</th>
207
+ <th>Error</th>
208
+ </tr>
209
+ </thead>
210
+
211
+ <tr>
212
+ <td class="table-checkbox">
213
+ <label>
214
+ <input type='checkbox' name='key[]' value='1544993820.0-9' />
215
+ </label>
216
+ </td>
217
+ <td>
218
+ <a href="/sidekiq/morgue/1544993820.0-9"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
219
+ </td>
220
+ <td>
221
+ <a href="/sidekiq/queues/foo">foo</a>
222
+ </td>
223
+ <td>HardWorker</td>
224
+ <td>
225
+ <div class="args">&quot;asdf&quot;, 1234</div>
226
+ </td>
227
+ <td>
228
+ <div>RuntimeError: Some fake message</div>
229
+ </td>
230
+ </tr>
231
+
232
+ <tr>
233
+ <td class="table-checkbox">
234
+ <label>
235
+ <input type='checkbox' name='key[]' value='1544993820.0-8' />
236
+ </label>
237
+ </td>
238
+ <td>
239
+ <a href="/sidekiq/morgue/1544993820.0-8"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
240
+ </td>
241
+ <td>
242
+ <a href="/sidekiq/queues/foo">foo</a>
243
+ </td>
244
+ <td>HardWorker</td>
245
+ <td>
246
+ <div class="args">&quot;asdf&quot;, 1234</div>
247
+ </td>
248
+ <td>
249
+ <div>RuntimeError: Some fake message</div>
250
+ </td>
251
+ </tr>
252
+
253
+ <tr>
254
+ <td class="table-checkbox">
255
+ <label>
256
+ <input type='checkbox' name='key[]' value='1544993820.0-7' />
257
+ </label>
258
+ </td>
259
+ <td>
260
+ <a href="/sidekiq/morgue/1544993820.0-7"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
261
+ </td>
262
+ <td>
263
+ <a href="/sidekiq/queues/foo">foo</a>
264
+ </td>
265
+ <td>HardWorker</td>
266
+ <td>
267
+ <div class="args">&quot;asdf&quot;, 1234</div>
268
+ </td>
269
+ <td>
270
+ <div>RuntimeError: Some fake message</div>
271
+ </td>
272
+ </tr>
273
+
274
+ <tr>
275
+ <td class="table-checkbox">
276
+ <label>
277
+ <input type='checkbox' name='key[]' value='1544993820.0-6' />
278
+ </label>
279
+ </td>
280
+ <td>
281
+ <a href="/sidekiq/morgue/1544993820.0-6"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
282
+ </td>
283
+ <td>
284
+ <a href="/sidekiq/queues/foo">foo</a>
285
+ </td>
286
+ <td>HardWorker</td>
287
+ <td>
288
+ <div class="args">&quot;asdf&quot;, 1234</div>
289
+ </td>
290
+ <td>
291
+ <div>RuntimeError: Some fake message</div>
292
+ </td>
293
+ </tr>
294
+
295
+ <tr>
296
+ <td class="table-checkbox">
297
+ <label>
298
+ <input type='checkbox' name='key[]' value='1544993820.0-5' />
299
+ </label>
300
+ </td>
301
+ <td>
302
+ <a href="/sidekiq/morgue/1544993820.0-5"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
303
+ </td>
304
+ <td>
305
+ <a href="/sidekiq/queues/foo">foo</a>
306
+ </td>
307
+ <td>HardWorker</td>
308
+ <td>
309
+ <div class="args">&quot;asdf&quot;, 1234</div>
310
+ </td>
311
+ <td>
312
+ <div>RuntimeError: Some fake message</div>
313
+ </td>
314
+ </tr>
315
+
316
+ <tr>
317
+ <td class="table-checkbox">
318
+ <label>
319
+ <input type='checkbox' name='key[]' value='1544993820.0-49' />
320
+ </label>
321
+ </td>
322
+ <td>
323
+ <a href="/sidekiq/morgue/1544993820.0-49"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
324
+ </td>
325
+ <td>
326
+ <a href="/sidekiq/queues/foo">foo</a>
327
+ </td>
328
+ <td>HardWorker</td>
329
+ <td>
330
+ <div class="args">&quot;asdf&quot;, 1234</div>
331
+ </td>
332
+ <td>
333
+ <div>RuntimeError: Some fake message</div>
334
+ </td>
335
+ </tr>
336
+
337
+ <tr>
338
+ <td class="table-checkbox">
339
+ <label>
340
+ <input type='checkbox' name='key[]' value='1544993820.0-48' />
341
+ </label>
342
+ </td>
343
+ <td>
344
+ <a href="/sidekiq/morgue/1544993820.0-48"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
345
+ </td>
346
+ <td>
347
+ <a href="/sidekiq/queues/foo">foo</a>
348
+ </td>
349
+ <td>HardWorker</td>
350
+ <td>
351
+ <div class="args">&quot;asdf&quot;, 1234</div>
352
+ </td>
353
+ <td>
354
+ <div>RuntimeError: Some fake message</div>
355
+ </td>
356
+ </tr>
357
+
358
+ <tr>
359
+ <td class="table-checkbox">
360
+ <label>
361
+ <input type='checkbox' name='key[]' value='1544993820.0-47' />
362
+ </label>
363
+ </td>
364
+ <td>
365
+ <a href="/sidekiq/morgue/1544993820.0-47"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
366
+ </td>
367
+ <td>
368
+ <a href="/sidekiq/queues/foo">foo</a>
369
+ </td>
370
+ <td>HardWorker</td>
371
+ <td>
372
+ <div class="args">&quot;asdf&quot;, 1234</div>
373
+ </td>
374
+ <td>
375
+ <div>RuntimeError: Some fake message</div>
376
+ </td>
377
+ </tr>
378
+
379
+ <tr>
380
+ <td class="table-checkbox">
381
+ <label>
382
+ <input type='checkbox' name='key[]' value='1544993820.0-46' />
383
+ </label>
384
+ </td>
385
+ <td>
386
+ <a href="/sidekiq/morgue/1544993820.0-46"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
387
+ </td>
388
+ <td>
389
+ <a href="/sidekiq/queues/foo">foo</a>
390
+ </td>
391
+ <td>HardWorker</td>
392
+ <td>
393
+ <div class="args">&quot;asdf&quot;, 1234</div>
394
+ </td>
395
+ <td>
396
+ <div>RuntimeError: Some fake message</div>
397
+ </td>
398
+ </tr>
399
+
400
+ <tr>
401
+ <td class="table-checkbox">
402
+ <label>
403
+ <input type='checkbox' name='key[]' value='1544993820.0-45' />
404
+ </label>
405
+ </td>
406
+ <td>
407
+ <a href="/sidekiq/morgue/1544993820.0-45"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
408
+ </td>
409
+ <td>
410
+ <a href="/sidekiq/queues/foo">foo</a>
411
+ </td>
412
+ <td>HardWorker</td>
413
+ <td>
414
+ <div class="args">&quot;asdf&quot;, 1234</div>
415
+ </td>
416
+ <td>
417
+ <div>RuntimeError: Some fake message</div>
418
+ </td>
419
+ </tr>
420
+
421
+ <tr>
422
+ <td class="table-checkbox">
423
+ <label>
424
+ <input type='checkbox' name='key[]' value='1544993820.0-4416aa76eb8cf03f56a49220' />
425
+ </label>
426
+ </td>
427
+ <td>
428
+ <a href="/sidekiq/morgue/1544993820.0-4416aa76eb8cf03f56a49220"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
429
+ </td>
430
+ <td>
431
+ <a href="/sidekiq/queues/foo">foo</a>
432
+ </td>
433
+ <td>HardWorker</td>
434
+ <td>
435
+ <div class="args">&quot;asdf&quot;, 1234</div>
436
+ </td>
437
+ <td>
438
+ <div>RuntimeError: Some fake message</div>
439
+ </td>
440
+ </tr>
441
+
442
+ <tr>
443
+ <td class="table-checkbox">
444
+ <label>
445
+ <input type='checkbox' name='key[]' value='1544993820.0-44' />
446
+ </label>
447
+ </td>
448
+ <td>
449
+ <a href="/sidekiq/morgue/1544993820.0-44"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
450
+ </td>
451
+ <td>
452
+ <a href="/sidekiq/queues/foo">foo</a>
453
+ </td>
454
+ <td>HardWorker</td>
455
+ <td>
456
+ <div class="args">&quot;asdf&quot;, 1234</div>
457
+ </td>
458
+ <td>
459
+ <div>RuntimeError: Some fake message</div>
460
+ </td>
461
+ </tr>
462
+
463
+ <tr>
464
+ <td class="table-checkbox">
465
+ <label>
466
+ <input type='checkbox' name='key[]' value='1544993820.0-43' />
467
+ </label>
468
+ </td>
469
+ <td>
470
+ <a href="/sidekiq/morgue/1544993820.0-43"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
471
+ </td>
472
+ <td>
473
+ <a href="/sidekiq/queues/foo">foo</a>
474
+ </td>
475
+ <td>HardWorker</td>
476
+ <td>
477
+ <div class="args">&quot;asdf&quot;, 1234</div>
478
+ </td>
479
+ <td>
480
+ <div>RuntimeError: Some fake message</div>
481
+ </td>
482
+ </tr>
483
+
484
+ <tr>
485
+ <td class="table-checkbox">
486
+ <label>
487
+ <input type='checkbox' name='key[]' value='1544993820.0-42' />
488
+ </label>
489
+ </td>
490
+ <td>
491
+ <a href="/sidekiq/morgue/1544993820.0-42"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
492
+ </td>
493
+ <td>
494
+ <a href="/sidekiq/queues/foo">foo</a>
495
+ </td>
496
+ <td>HardWorker</td>
497
+ <td>
498
+ <div class="args">&quot;asdf&quot;, 1234</div>
499
+ </td>
500
+ <td>
501
+ <div>RuntimeError: Some fake message</div>
502
+ </td>
503
+ </tr>
504
+
505
+ <tr>
506
+ <td class="table-checkbox">
507
+ <label>
508
+ <input type='checkbox' name='key[]' value='1544993820.0-41' />
509
+ </label>
510
+ </td>
511
+ <td>
512
+ <a href="/sidekiq/morgue/1544993820.0-41"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
513
+ </td>
514
+ <td>
515
+ <a href="/sidekiq/queues/foo">foo</a>
516
+ </td>
517
+ <td>HardWorker</td>
518
+ <td>
519
+ <div class="args">&quot;asdf&quot;, 1234</div>
520
+ </td>
521
+ <td>
522
+ <div>RuntimeError: Some fake message</div>
523
+ </td>
524
+ </tr>
525
+
526
+ <tr>
527
+ <td class="table-checkbox">
528
+ <label>
529
+ <input type='checkbox' name='key[]' value='1544993820.0-40' />
530
+ </label>
531
+ </td>
532
+ <td>
533
+ <a href="/sidekiq/morgue/1544993820.0-40"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
534
+ </td>
535
+ <td>
536
+ <a href="/sidekiq/queues/foo">foo</a>
537
+ </td>
538
+ <td>HardWorker</td>
539
+ <td>
540
+ <div class="args">&quot;asdf&quot;, 1234</div>
541
+ </td>
542
+ <td>
543
+ <div>RuntimeError: Some fake message</div>
544
+ </td>
545
+ </tr>
546
+
547
+ <tr>
548
+ <td class="table-checkbox">
549
+ <label>
550
+ <input type='checkbox' name='key[]' value='1544993820.0-4' />
551
+ </label>
552
+ </td>
553
+ <td>
554
+ <a href="/sidekiq/morgue/1544993820.0-4"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
555
+ </td>
556
+ <td>
557
+ <a href="/sidekiq/queues/foo">foo</a>
558
+ </td>
559
+ <td>HardWorker</td>
560
+ <td>
561
+ <div class="args">&quot;asdf&quot;, 1234</div>
562
+ </td>
563
+ <td>
564
+ <div>RuntimeError: Some fake message</div>
565
+ </td>
566
+ </tr>
567
+
568
+ <tr>
569
+ <td class="table-checkbox">
570
+ <label>
571
+ <input type='checkbox' name='key[]' value='1544993820.0-39' />
572
+ </label>
573
+ </td>
574
+ <td>
575
+ <a href="/sidekiq/morgue/1544993820.0-39"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
576
+ </td>
577
+ <td>
578
+ <a href="/sidekiq/queues/foo">foo</a>
579
+ </td>
580
+ <td>HardWorker</td>
581
+ <td>
582
+ <div class="args">&quot;asdf&quot;, 1234</div>
583
+ </td>
584
+ <td>
585
+ <div>RuntimeError: Some fake message</div>
586
+ </td>
587
+ </tr>
588
+
589
+ <tr>
590
+ <td class="table-checkbox">
591
+ <label>
592
+ <input type='checkbox' name='key[]' value='1544993820.0-38' />
593
+ </label>
594
+ </td>
595
+ <td>
596
+ <a href="/sidekiq/morgue/1544993820.0-38"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
597
+ </td>
598
+ <td>
599
+ <a href="/sidekiq/queues/foo">foo</a>
600
+ </td>
601
+ <td>HardWorker</td>
602
+ <td>
603
+ <div class="args">&quot;asdf&quot;, 1234</div>
604
+ </td>
605
+ <td>
606
+ <div>RuntimeError: Some fake message</div>
607
+ </td>
608
+ </tr>
609
+
610
+ <tr>
611
+ <td class="table-checkbox">
612
+ <label>
613
+ <input type='checkbox' name='key[]' value='1544993820.0-37' />
614
+ </label>
615
+ </td>
616
+ <td>
617
+ <a href="/sidekiq/morgue/1544993820.0-37"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
618
+ </td>
619
+ <td>
620
+ <a href="/sidekiq/queues/foo">foo</a>
621
+ </td>
622
+ <td>HardWorker</td>
623
+ <td>
624
+ <div class="args">&quot;asdf&quot;, 1234</div>
625
+ </td>
626
+ <td>
627
+ <div>RuntimeError: Some fake message</div>
628
+ </td>
629
+ </tr>
630
+
631
+ <tr>
632
+ <td class="table-checkbox">
633
+ <label>
634
+ <input type='checkbox' name='key[]' value='1544993820.0-36' />
635
+ </label>
636
+ </td>
637
+ <td>
638
+ <a href="/sidekiq/morgue/1544993820.0-36"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
639
+ </td>
640
+ <td>
641
+ <a href="/sidekiq/queues/foo">foo</a>
642
+ </td>
643
+ <td>HardWorker</td>
644
+ <td>
645
+ <div class="args">&quot;asdf&quot;, 1234</div>
646
+ </td>
647
+ <td>
648
+ <div>RuntimeError: Some fake message</div>
649
+ </td>
650
+ </tr>
651
+
652
+ <tr>
653
+ <td class="table-checkbox">
654
+ <label>
655
+ <input type='checkbox' name='key[]' value='1544993820.0-35' />
656
+ </label>
657
+ </td>
658
+ <td>
659
+ <a href="/sidekiq/morgue/1544993820.0-35"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
660
+ </td>
661
+ <td>
662
+ <a href="/sidekiq/queues/foo">foo</a>
663
+ </td>
664
+ <td>HardWorker</td>
665
+ <td>
666
+ <div class="args">&quot;asdf&quot;, 1234</div>
667
+ </td>
668
+ <td>
669
+ <div>RuntimeError: Some fake message</div>
670
+ </td>
671
+ </tr>
672
+
673
+ <tr>
674
+ <td class="table-checkbox">
675
+ <label>
676
+ <input type='checkbox' name='key[]' value='1544993820.0-34e79a46b1956d3a1180767b' />
677
+ </label>
678
+ </td>
679
+ <td>
680
+ <a href="/sidekiq/morgue/1544993820.0-34e79a46b1956d3a1180767b"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
681
+ </td>
682
+ <td>
683
+ <a href="/sidekiq/queues/foo">foo</a>
684
+ </td>
685
+ <td>HardWorker</td>
686
+ <td>
687
+ <div class="args">&quot;asdf&quot;, 1234</div>
688
+ </td>
689
+ <td>
690
+ <div>RuntimeError: Some fake message</div>
691
+ </td>
692
+ </tr>
693
+
694
+ <tr>
695
+ <td class="table-checkbox">
696
+ <label>
697
+ <input type='checkbox' name='key[]' value='1544993820.0-34' />
698
+ </label>
699
+ </td>
700
+ <td>
701
+ <a href="/sidekiq/morgue/1544993820.0-34"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
702
+ </td>
703
+ <td>
704
+ <a href="/sidekiq/queues/foo">foo</a>
705
+ </td>
706
+ <td>HardWorker</td>
707
+ <td>
708
+ <div class="args">&quot;asdf&quot;, 1234</div>
709
+ </td>
710
+ <td>
711
+ <div>RuntimeError: Some fake message</div>
712
+ </td>
713
+ </tr>
714
+
715
+ <tr>
716
+ <td class="table-checkbox">
717
+ <label>
718
+ <input type='checkbox' name='key[]' value='1544993820.0-33' />
719
+ </label>
720
+ </td>
721
+ <td>
722
+ <a href="/sidekiq/morgue/1544993820.0-33"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
723
+ </td>
724
+ <td>
725
+ <a href="/sidekiq/queues/foo">foo</a>
726
+ </td>
727
+ <td>HardWorker</td>
728
+ <td>
729
+ <div class="args">&quot;asdf&quot;, 1234</div>
730
+ </td>
731
+ <td>
732
+ <div>RuntimeError: Some fake message</div>
733
+ </td>
734
+ </tr>
735
+
736
+ <tr>
737
+ <td class="table-checkbox">
738
+ <label>
739
+ <input type='checkbox' name='key[]' value='1544993820.0-32' />
740
+ </label>
741
+ </td>
742
+ <td>
743
+ <a href="/sidekiq/morgue/1544993820.0-32"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
744
+ </td>
745
+ <td>
746
+ <a href="/sidekiq/queues/foo">foo</a>
747
+ </td>
748
+ <td>HardWorker</td>
749
+ <td>
750
+ <div class="args">&quot;asdf&quot;, 1234</div>
751
+ </td>
752
+ <td>
753
+ <div>RuntimeError: Some fake message</div>
754
+ </td>
755
+ </tr>
756
+
757
+ <tr>
758
+ <td class="table-checkbox">
759
+ <label>
760
+ <input type='checkbox' name='key[]' value='1544993820.0-31' />
761
+ </label>
762
+ </td>
763
+ <td>
764
+ <a href="/sidekiq/morgue/1544993820.0-31"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
765
+ </td>
766
+ <td>
767
+ <a href="/sidekiq/queues/foo">foo</a>
768
+ </td>
769
+ <td>HardWorker</td>
770
+ <td>
771
+ <div class="args">&quot;asdf&quot;, 1234</div>
772
+ </td>
773
+ <td>
774
+ <div>RuntimeError: Some fake message</div>
775
+ </td>
776
+ </tr>
777
+
778
+ <tr>
779
+ <td class="table-checkbox">
780
+ <label>
781
+ <input type='checkbox' name='key[]' value='1544993820.0-30' />
782
+ </label>
783
+ </td>
784
+ <td>
785
+ <a href="/sidekiq/morgue/1544993820.0-30"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
786
+ </td>
787
+ <td>
788
+ <a href="/sidekiq/queues/foo">foo</a>
789
+ </td>
790
+ <td>HardWorker</td>
791
+ <td>
792
+ <div class="args">&quot;asdf&quot;, 1234</div>
793
+ </td>
794
+ <td>
795
+ <div>RuntimeError: Some fake message</div>
796
+ </td>
797
+ </tr>
798
+
799
+ <tr>
800
+ <td class="table-checkbox">
801
+ <label>
802
+ <input type='checkbox' name='key[]' value='1544993820.0-3' />
803
+ </label>
804
+ </td>
805
+ <td>
806
+ <a href="/sidekiq/morgue/1544993820.0-3"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
807
+ </td>
808
+ <td>
809
+ <a href="/sidekiq/queues/foo">foo</a>
810
+ </td>
811
+ <td>HardWorker</td>
812
+ <td>
813
+ <div class="args">&quot;asdf&quot;, 1234</div>
814
+ </td>
815
+ <td>
816
+ <div>RuntimeError: Some fake message</div>
817
+ </td>
818
+ </tr>
819
+
820
+ <tr>
821
+ <td class="table-checkbox">
822
+ <label>
823
+ <input type='checkbox' name='key[]' value='1544993820.0-29' />
824
+ </label>
825
+ </td>
826
+ <td>
827
+ <a href="/sidekiq/morgue/1544993820.0-29"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
828
+ </td>
829
+ <td>
830
+ <a href="/sidekiq/queues/foo">foo</a>
831
+ </td>
832
+ <td>HardWorker</td>
833
+ <td>
834
+ <div class="args">&quot;asdf&quot;, 1234</div>
835
+ </td>
836
+ <td>
837
+ <div>RuntimeError: Some fake message</div>
838
+ </td>
839
+ </tr>
840
+
841
+ <tr>
842
+ <td class="table-checkbox">
843
+ <label>
844
+ <input type='checkbox' name='key[]' value='1544993820.0-28' />
845
+ </label>
846
+ </td>
847
+ <td>
848
+ <a href="/sidekiq/morgue/1544993820.0-28"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
849
+ </td>
850
+ <td>
851
+ <a href="/sidekiq/queues/foo">foo</a>
852
+ </td>
853
+ <td>HardWorker</td>
854
+ <td>
855
+ <div class="args">&quot;asdf&quot;, 1234</div>
856
+ </td>
857
+ <td>
858
+ <div>RuntimeError: Some fake message</div>
859
+ </td>
860
+ </tr>
861
+
862
+ <tr>
863
+ <td class="table-checkbox">
864
+ <label>
865
+ <input type='checkbox' name='key[]' value='1544993820.0-27' />
866
+ </label>
867
+ </td>
868
+ <td>
869
+ <a href="/sidekiq/morgue/1544993820.0-27"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
870
+ </td>
871
+ <td>
872
+ <a href="/sidekiq/queues/foo">foo</a>
873
+ </td>
874
+ <td>HardWorker</td>
875
+ <td>
876
+ <div class="args">&quot;asdf&quot;, 1234</div>
877
+ </td>
878
+ <td>
879
+ <div>RuntimeError: Some fake message</div>
880
+ </td>
881
+ </tr>
882
+
883
+ <tr>
884
+ <td class="table-checkbox">
885
+ <label>
886
+ <input type='checkbox' name='key[]' value='1544993820.0-26' />
887
+ </label>
888
+ </td>
889
+ <td>
890
+ <a href="/sidekiq/morgue/1544993820.0-26"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
891
+ </td>
892
+ <td>
893
+ <a href="/sidekiq/queues/foo">foo</a>
894
+ </td>
895
+ <td>HardWorker</td>
896
+ <td>
897
+ <div class="args">&quot;asdf&quot;, 1234</div>
898
+ </td>
899
+ <td>
900
+ <div>RuntimeError: Some fake message</div>
901
+ </td>
902
+ </tr>
903
+
904
+ <tr>
905
+ <td class="table-checkbox">
906
+ <label>
907
+ <input type='checkbox' name='key[]' value='1544993820.0-25' />
908
+ </label>
909
+ </td>
910
+ <td>
911
+ <a href="/sidekiq/morgue/1544993820.0-25"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
912
+ </td>
913
+ <td>
914
+ <a href="/sidekiq/queues/foo">foo</a>
915
+ </td>
916
+ <td>HardWorker</td>
917
+ <td>
918
+ <div class="args">&quot;asdf&quot;, 1234</div>
919
+ </td>
920
+ <td>
921
+ <div>RuntimeError: Some fake message</div>
922
+ </td>
923
+ </tr>
924
+
925
+ <tr>
926
+ <td class="table-checkbox">
927
+ <label>
928
+ <input type='checkbox' name='key[]' value='1544993820.0-24' />
929
+ </label>
930
+ </td>
931
+ <td>
932
+ <a href="/sidekiq/morgue/1544993820.0-24"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
933
+ </td>
934
+ <td>
935
+ <a href="/sidekiq/queues/foo">foo</a>
936
+ </td>
937
+ <td>HardWorker</td>
938
+ <td>
939
+ <div class="args">&quot;asdf&quot;, 1234</div>
940
+ </td>
941
+ <td>
942
+ <div>RuntimeError: Some fake message</div>
943
+ </td>
944
+ </tr>
945
+
946
+ <tr>
947
+ <td class="table-checkbox">
948
+ <label>
949
+ <input type='checkbox' name='key[]' value='1544993820.0-23' />
950
+ </label>
951
+ </td>
952
+ <td>
953
+ <a href="/sidekiq/morgue/1544993820.0-23"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
954
+ </td>
955
+ <td>
956
+ <a href="/sidekiq/queues/foo">foo</a>
957
+ </td>
958
+ <td>HardWorker</td>
959
+ <td>
960
+ <div class="args">&quot;asdf&quot;, 1234</div>
961
+ </td>
962
+ <td>
963
+ <div>RuntimeError: Some fake message</div>
964
+ </td>
965
+ </tr>
966
+
967
+ <tr>
968
+ <td class="table-checkbox">
969
+ <label>
970
+ <input type='checkbox' name='key[]' value='1544993820.0-22' />
971
+ </label>
972
+ </td>
973
+ <td>
974
+ <a href="/sidekiq/morgue/1544993820.0-22"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
975
+ </td>
976
+ <td>
977
+ <a href="/sidekiq/queues/foo">foo</a>
978
+ </td>
979
+ <td>HardWorker</td>
980
+ <td>
981
+ <div class="args">&quot;asdf&quot;, 1234</div>
982
+ </td>
983
+ <td>
984
+ <div>RuntimeError: Some fake message</div>
985
+ </td>
986
+ </tr>
987
+
988
+ <tr>
989
+ <td class="table-checkbox">
990
+ <label>
991
+ <input type='checkbox' name='key[]' value='1544993820.0-21' />
992
+ </label>
993
+ </td>
994
+ <td>
995
+ <a href="/sidekiq/morgue/1544993820.0-21"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
996
+ </td>
997
+ <td>
998
+ <a href="/sidekiq/queues/foo">foo</a>
999
+ </td>
1000
+ <td>HardWorker</td>
1001
+ <td>
1002
+ <div class="args">&quot;asdf&quot;, 1234</div>
1003
+ </td>
1004
+ <td>
1005
+ <div>RuntimeError: Some fake message</div>
1006
+ </td>
1007
+ </tr>
1008
+
1009
+ <tr>
1010
+ <td class="table-checkbox">
1011
+ <label>
1012
+ <input type='checkbox' name='key[]' value='1544993820.0-20' />
1013
+ </label>
1014
+ </td>
1015
+ <td>
1016
+ <a href="/sidekiq/morgue/1544993820.0-20"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1017
+ </td>
1018
+ <td>
1019
+ <a href="/sidekiq/queues/foo">foo</a>
1020
+ </td>
1021
+ <td>HardWorker</td>
1022
+ <td>
1023
+ <div class="args">&quot;asdf&quot;, 1234</div>
1024
+ </td>
1025
+ <td>
1026
+ <div>RuntimeError: Some fake message</div>
1027
+ </td>
1028
+ </tr>
1029
+
1030
+ <tr>
1031
+ <td class="table-checkbox">
1032
+ <label>
1033
+ <input type='checkbox' name='key[]' value='1544993820.0-2' />
1034
+ </label>
1035
+ </td>
1036
+ <td>
1037
+ <a href="/sidekiq/morgue/1544993820.0-2"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1038
+ </td>
1039
+ <td>
1040
+ <a href="/sidekiq/queues/foo">foo</a>
1041
+ </td>
1042
+ <td>HardWorker</td>
1043
+ <td>
1044
+ <div class="args">&quot;asdf&quot;, 1234</div>
1045
+ </td>
1046
+ <td>
1047
+ <div>RuntimeError: Some fake message</div>
1048
+ </td>
1049
+ </tr>
1050
+
1051
+ <tr>
1052
+ <td class="table-checkbox">
1053
+ <label>
1054
+ <input type='checkbox' name='key[]' value='1544993820.0-19' />
1055
+ </label>
1056
+ </td>
1057
+ <td>
1058
+ <a href="/sidekiq/morgue/1544993820.0-19"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1059
+ </td>
1060
+ <td>
1061
+ <a href="/sidekiq/queues/foo">foo</a>
1062
+ </td>
1063
+ <td>HardWorker</td>
1064
+ <td>
1065
+ <div class="args">&quot;asdf&quot;, 1234</div>
1066
+ </td>
1067
+ <td>
1068
+ <div>RuntimeError: Some fake message</div>
1069
+ </td>
1070
+ </tr>
1071
+
1072
+ <tr>
1073
+ <td class="table-checkbox">
1074
+ <label>
1075
+ <input type='checkbox' name='key[]' value='1544993820.0-18' />
1076
+ </label>
1077
+ </td>
1078
+ <td>
1079
+ <a href="/sidekiq/morgue/1544993820.0-18"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1080
+ </td>
1081
+ <td>
1082
+ <a href="/sidekiq/queues/foo">foo</a>
1083
+ </td>
1084
+ <td>HardWorker</td>
1085
+ <td>
1086
+ <div class="args">&quot;asdf&quot;, 1234</div>
1087
+ </td>
1088
+ <td>
1089
+ <div>RuntimeError: Some fake message</div>
1090
+ </td>
1091
+ </tr>
1092
+
1093
+ <tr>
1094
+ <td class="table-checkbox">
1095
+ <label>
1096
+ <input type='checkbox' name='key[]' value='1544993820.0-17' />
1097
+ </label>
1098
+ </td>
1099
+ <td>
1100
+ <a href="/sidekiq/morgue/1544993820.0-17"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1101
+ </td>
1102
+ <td>
1103
+ <a href="/sidekiq/queues/foo">foo</a>
1104
+ </td>
1105
+ <td>HardWorker</td>
1106
+ <td>
1107
+ <div class="args">&quot;asdf&quot;, 1234</div>
1108
+ </td>
1109
+ <td>
1110
+ <div>RuntimeError: Some fake message</div>
1111
+ </td>
1112
+ </tr>
1113
+
1114
+ <tr>
1115
+ <td class="table-checkbox">
1116
+ <label>
1117
+ <input type='checkbox' name='key[]' value='1544993820.0-16' />
1118
+ </label>
1119
+ </td>
1120
+ <td>
1121
+ <a href="/sidekiq/morgue/1544993820.0-16"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1122
+ </td>
1123
+ <td>
1124
+ <a href="/sidekiq/queues/foo">foo</a>
1125
+ </td>
1126
+ <td>HardWorker</td>
1127
+ <td>
1128
+ <div class="args">&quot;asdf&quot;, 1234</div>
1129
+ </td>
1130
+ <td>
1131
+ <div>RuntimeError: Some fake message</div>
1132
+ </td>
1133
+ </tr>
1134
+
1135
+ <tr>
1136
+ <td class="table-checkbox">
1137
+ <label>
1138
+ <input type='checkbox' name='key[]' value='1544993820.0-15' />
1139
+ </label>
1140
+ </td>
1141
+ <td>
1142
+ <a href="/sidekiq/morgue/1544993820.0-15"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1143
+ </td>
1144
+ <td>
1145
+ <a href="/sidekiq/queues/foo">foo</a>
1146
+ </td>
1147
+ <td>HardWorker</td>
1148
+ <td>
1149
+ <div class="args">&quot;asdf&quot;, 1234</div>
1150
+ </td>
1151
+ <td>
1152
+ <div>RuntimeError: Some fake message</div>
1153
+ </td>
1154
+ </tr>
1155
+
1156
+ <tr>
1157
+ <td class="table-checkbox">
1158
+ <label>
1159
+ <input type='checkbox' name='key[]' value='1544993820.0-14' />
1160
+ </label>
1161
+ </td>
1162
+ <td>
1163
+ <a href="/sidekiq/morgue/1544993820.0-14"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1164
+ </td>
1165
+ <td>
1166
+ <a href="/sidekiq/queues/foo">foo</a>
1167
+ </td>
1168
+ <td>HardWorker</td>
1169
+ <td>
1170
+ <div class="args">&quot;asdf&quot;, 1234</div>
1171
+ </td>
1172
+ <td>
1173
+ <div>RuntimeError: Some fake message</div>
1174
+ </td>
1175
+ </tr>
1176
+
1177
+ <tr>
1178
+ <td class="table-checkbox">
1179
+ <label>
1180
+ <input type='checkbox' name='key[]' value='1544993820.0-13' />
1181
+ </label>
1182
+ </td>
1183
+ <td>
1184
+ <a href="/sidekiq/morgue/1544993820.0-13"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1185
+ </td>
1186
+ <td>
1187
+ <a href="/sidekiq/queues/foo">foo</a>
1188
+ </td>
1189
+ <td>HardWorker</td>
1190
+ <td>
1191
+ <div class="args">&quot;asdf&quot;, 1234</div>
1192
+ </td>
1193
+ <td>
1194
+ <div>RuntimeError: Some fake message</div>
1195
+ </td>
1196
+ </tr>
1197
+
1198
+ <tr>
1199
+ <td class="table-checkbox">
1200
+ <label>
1201
+ <input type='checkbox' name='key[]' value='1544993820.0-12' />
1202
+ </label>
1203
+ </td>
1204
+ <td>
1205
+ <a href="/sidekiq/morgue/1544993820.0-12"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1206
+ </td>
1207
+ <td>
1208
+ <a href="/sidekiq/queues/foo">foo</a>
1209
+ </td>
1210
+ <td>HardWorker</td>
1211
+ <td>
1212
+ <div class="args">&quot;asdf&quot;, 1234</div>
1213
+ </td>
1214
+ <td>
1215
+ <div>RuntimeError: Some fake message</div>
1216
+ </td>
1217
+ </tr>
1218
+
1219
+ <tr>
1220
+ <td class="table-checkbox">
1221
+ <label>
1222
+ <input type='checkbox' name='key[]' value='1544993820.0-11' />
1223
+ </label>
1224
+ </td>
1225
+ <td>
1226
+ <a href="/sidekiq/morgue/1544993820.0-11"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1227
+ </td>
1228
+ <td>
1229
+ <a href="/sidekiq/queues/foo">foo</a>
1230
+ </td>
1231
+ <td>HardWorker</td>
1232
+ <td>
1233
+ <div class="args">&quot;asdf&quot;, 1234</div>
1234
+ </td>
1235
+ <td>
1236
+ <div>RuntimeError: Some fake message</div>
1237
+ </td>
1238
+ </tr>
1239
+
1240
+ <tr>
1241
+ <td class="table-checkbox">
1242
+ <label>
1243
+ <input type='checkbox' name='key[]' value='1544993820.0-10' />
1244
+ </label>
1245
+ </td>
1246
+ <td>
1247
+ <a href="/sidekiq/morgue/1544993820.0-10"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
1248
+ </td>
1249
+ <td>
1250
+ <a href="/sidekiq/queues/foo">foo</a>
1251
+ </td>
1252
+ <td>HardWorker</td>
1253
+ <td>
1254
+ <div class="args">&quot;asdf&quot;, 1234</div>
1255
+ </td>
1256
+ <td>
1257
+ <div>RuntimeError: Some fake message</div>
1258
+ </td>
1259
+ </tr>
1260
+
1261
+ </table>
1262
+ <input class="btn btn-primary btn-xs pull-left" type="submit" name="retry" value="Revive" />
1263
+ <input class="btn btn-danger btn-xs pull-left" type="submit" name="delete" value="Bury" />
1264
+ </form>
1265
+
1266
+ <form action="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour/delete" method="post">
1267
+ <input type='hidden' name='authenticity_token' value=''/>
1268
+ <input class="btn btn-danger btn-xs pull-right" type="submit" name="delete" value="Bury All" data-confirm="Are you sure?" />
1269
+ </form>
1270
+
1271
+ <form action="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/1_hour/retry" method="post">
1272
+ <input type='hidden' name='authenticity_token' value=''/>
1273
+ <input class="btn btn-danger btn-xs pull-right" type="submit" name="retry" value="Revive All" data-confirm="Are you sure?" />
1274
+ </form>
1275
+
1276
+
1277
+ </div>
1278
+ </div>
1279
+ </div>
1280
+ </div>
1281
+ <div class="navbar navbar-fixed-bottom navbar-inverse ltr">
1282
+ <div class="navbar-inner">
1283
+ <div class="container text-center">
1284
+ <ul class="nav">
1285
+ <li>
1286
+ <p class="navbar-text product-version">Sidekiq v*EXCLUDED*</p>
1287
+ </li>
1288
+ <li>
1289
+ <p class="navbar-text redis-url" title="redis://127.0.0.1:6379/0">redis://127.0.0.1:6379/0</p>
1290
+ </li>
1291
+ <li>
1292
+ <p class="navbar-text server-utc-time">20:57:00 UTC</p>
1293
+ </li>
1294
+ <li>
1295
+ <p class="navbar-text"><a style="color: gray;" href="https://github.com/mperham/sidekiq/wiki">docs</a></p>
1296
+ </li>
1297
+ </ul>
1298
+ </div>
1299
+ </div>
1300
+ </div>
1301
+
1302
+ </body>
1303
+ </html>