2013-08-21 18:38:52 -04:00
|
|
|
<header>
|
|
|
|
<h3><%= t('Job') %></h3>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<table class="table table-bordered table-striped">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('Queue') %></th>
|
|
|
|
<td>
|
|
|
|
<a href="<%= root_path %>queues/<%= job['queue'] %>"><%= job['queue'] %></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('Class') %></th>
|
|
|
|
<td>
|
|
|
|
<code><%= job['class'] %></code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('Arguments') %></th>
|
|
|
|
<td>
|
2013-12-12 00:18:55 -05:00
|
|
|
<code class="code-wrap">
|
2013-08-21 18:38:52 -04:00
|
|
|
<!-- We don't want to truncate any job arguments when viewing a single job's status page -->
|
|
|
|
<div class="args-extended"><%= display_args(job['args'], nil) %></div>
|
|
|
|
</code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>JID</th>
|
|
|
|
<td>
|
|
|
|
<code><%= job.jid %></code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('Enqueued') %></th>
|
|
|
|
<td><%= relative_time(job.enqueued_at) %></td>
|
|
|
|
</tr>
|
|
|
|
<% unless retry_extra_items(job).empty? %>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('Extras') %></th>
|
|
|
|
<td>
|
|
|
|
<code>
|
|
|
|
<%= retry_extra_items(job).inspect %>
|
|
|
|
</code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
<% if type == :retry %>
|
|
|
|
<% if job['retry_count'] && job['retry_count'] > 0 %>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('RetryCount') %></th>
|
|
|
|
<td><%= job['retry_count'] %></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('LastRetry') %></th>
|
|
|
|
<td><%= relative_time(job['retried_at'].is_a?(Numeric) ? Time.at(job['retried_at']) : Time.parse(job['retried_at'])) %></td>
|
|
|
|
</tr>
|
|
|
|
<% else %>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('OriginallyFailed') %></th>
|
|
|
|
<td><%= relative_time(job['failed_at'].is_a?(Numeric) ? Time.at(job['failed_at']) : Time.parse(job['failed_at'])) %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('NextRetry') %></th>
|
|
|
|
<td><%= relative_time(job.at) %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
<% if type == :scheduled %>
|
|
|
|
<tr>
|
|
|
|
<th><%= t('Scheduled') %></th>
|
|
|
|
<td><%= relative_time(job.at) %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|