1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Fix Sidetiq dashboard for workers with no schedule.

This commit is contained in:
Tobias Svensson 2013-09-17 17:16:25 +01:00
parent a81ec342f0
commit 64f40634c0

View file

@ -26,7 +26,12 @@
<a href="<%= "#{root_path}sidetiq/#{worker.name}/schedule" %>"><%= worker.name %></a>
<td><%= worker.get_sidekiq_options["queue"] %></td>
<td>
<% @next = schedule.next_occurrence(@time) %>
<% if @next.nil? %>
No schedule
<% else %>
<%= relative_time(schedule.next_occurrence(@time)) %>
<% end %>
</td>
<td>
<form action="<%= "#{root_path}sidetiq/#{worker.name}/trigger" %>" method="post">
@ -39,9 +44,6 @@
<% else %>
<div class="alert alert-success">No recurring jobs found.</div>
<% end %>
</div>
</div>
</div>