2013-08-21 18:38:52 -04:00
|
|
|
<header class="row">
|
2013-10-01 00:43:24 -04:00
|
|
|
<div class="col-sm-5">
|
2013-08-21 18:38:52 -04:00
|
|
|
<h3><%= t('Retries') %></h3>
|
|
|
|
</div>
|
2013-10-01 00:43:24 -04:00
|
|
|
<div class="col-sm-4">
|
2013-08-21 18:38:52 -04:00
|
|
|
<% if @retries.size > 0 %>
|
|
|
|
<%= erb :_paging, :locals => { :url => "#{root_path}retries" } %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<% if @retries.size > 0 %>
|
|
|
|
<form action="<%= root_path %>retries" method="post">
|
|
|
|
<table class="table table-striped table-bordered table-white">
|
|
|
|
<tr>
|
|
|
|
<th width="20px">
|
|
|
|
<input type="checkbox" class="check_all" />
|
|
|
|
</th>
|
|
|
|
<th width="25%"><%= t('NextRetry') %></th>
|
|
|
|
<th width="11%"><%= t('RetryCount') %></th>
|
|
|
|
<th><%= t('Queue') %></th>
|
|
|
|
<th><%= t('Worker') %></th>
|
|
|
|
<th><%= t('Arguments') %></th>
|
2013-09-19 06:10:14 -04:00
|
|
|
<th><%= t('Error') %></th>
|
2013-08-21 18:38:52 -04:00
|
|
|
</tr>
|
|
|
|
<% @retries.each do |msg, score| %>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<input type='checkbox' name='key[]' value='<%= job_params(msg, score) %>' />
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="<%= root_path %>retries/<%= job_params(msg, score) %>"><%= relative_time(Time.at(score)) %></a>
|
|
|
|
</td>
|
|
|
|
<td><%= msg['retry_count'] %></td>
|
|
|
|
<td>
|
|
|
|
<a href="<%= root_path %>queues/<%= msg['queue'] %>"><%= msg['queue'] %></a>
|
|
|
|
</td>
|
|
|
|
<td><%= msg['class'] %></td>
|
|
|
|
<td>
|
|
|
|
<div class="args"><%= display_args(msg['args']) %></div>
|
|
|
|
</td>
|
2013-09-19 06:10:14 -04:00
|
|
|
<td>
|
2013-10-03 23:13:05 -04:00
|
|
|
<div><%= truncate("#{msg['error_class']}: #{msg['error_message']}", 200) %></div>
|
2013-09-19 06:10:14 -04:00
|
|
|
</td>
|
2013-08-21 18:38:52 -04:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
2013-10-01 00:43:24 -04:00
|
|
|
<input class="btn btn-primary btn-xs pull-left" type="submit" name="retry" value="<%= t('RetryNow') %>" />
|
|
|
|
<input class="btn btn-danger btn-xs pull-left" type="submit" name="delete" value="<%= t('Delete') %>" />
|
2013-08-21 18:38:52 -04:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<form action="<%= root_path %>retries/all/delete" method="post">
|
2013-10-01 00:43:24 -04:00
|
|
|
<input class="btn btn-danger btn-xs pull-right" type="submit" name="delete" value="<%= t('DeleteAll') %>" data-confirm="<%= t('AreYouSure') %>" />
|
2013-08-21 18:38:52 -04:00
|
|
|
</form>
|
|
|
|
<form action="<%= root_path %>retries/all/retry" method="post">
|
2013-10-01 00:43:24 -04:00
|
|
|
<input class="btn btn-danger btn-xs pull-right" type="submit" name="retry" value="<%= t('RetryAll') %>" data-confirm="<%= t('AreYouSure') %>" />
|
2013-08-21 18:38:52 -04:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<% else %>
|
|
|
|
<div class="alert alert-success"><%= t('NoRetriesFound') %></div>
|
|
|
|
<% end %>
|