Skip to content

Commit

Permalink
Fixing pagination issue on delayed tab
Browse files Browse the repository at this point in the history
  • Loading branch information
bvandenbos committed Sep 16, 2011
1 parent 4a9ba17 commit b999590
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,4 @@ DEPENDENCIES
bundler (>= 1.0.0)
mocha
rack-test
redis (>= 2.0.1)
resque (>= 1.15.0)
resque-scheduler!
rufus-scheduler
3 changes: 2 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

* TODO: address race condition with delayed jobs (using redis transactions)

## 2.0.0.e (2011-??-??)
## 2.0.0.e (2011-09-16)

* Adding enqueue_at_with_queue/enqueue_in_with_queue support (niralisse)
* Adding `Resque::Scheduler.poll_sleep_amount` to allow for configuring
the sleep time b/w delayed queue polls.
* Fixed pagination issue on the Delayed tab

## 2.0.0.d (2011-04-04)

Expand Down
2 changes: 1 addition & 1 deletion lib/resque_scheduler/server/views/delayed.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<th>Class</th>
<th>Args</th>
</tr>
<% resque.delayed_queue_peek(start, start+20).each do |timestamp| %>
<% resque.delayed_queue_peek(start, 20).each do |timestamp| %>
<tr>
<td>
<form action="<%= u "/delayed/queue_now" %>" method="post">
Expand Down

0 comments on commit b999590

Please sign in to comment.