web/views/morgue.erb in sidekiq-3.0.2 vs web/views/morgue.erb in sidekiq-3.1.0
- old
+ new
@@ -20,11 +20,11 @@
<input type="checkbox" class="check_all" />
</label>
</th>
<th width="25%"><%= t('LastRetry') %></th>
<th><%= t('Queue') %></th>
- <th><%= t('Worker') %></th>
+ <th><%= t('Job') %></th>
<th><%= t('Arguments') %></th>
<th><%= t('Error') %></th>
</tr>
</thead>
<% @dead.each do |entry| %>
@@ -38,12 +38,12 @@
<a href="<%= root_path %>morgue/<%= job_params(entry.item, entry.score) %>"><%= relative_time(entry.at) %></a>
</td>
<td>
<a href="<%= root_path %>queues/<%= entry.queue %>"><%= entry.queue %></a>
</td>
- <td><%= entry.klass %></td>
+ <td><%= entry.display_class %></td>
<td>
- <div class="args"><%= display_args(entry.args) %></div>
+ <div class="args"><%= display_args(entry.display_args) %></div>
</td>
<td>
<div><%= h truncate("#{entry['error_class']}: #{entry['error_message']}", 200) %></div>
</td>
</tr>