Skip to content

Commit

Permalink
Requeue typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zanker committed Oct 24, 2012
1 parent b3680bd commit b97adb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resque/plugins/concurrency_limiter.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def around_perform_concurrency(*args)
lock = Resque.redis.setnx(concurrency_key("active", args), true) lock = Resque.redis.setnx(concurrency_key("active", args), true)
# Couldn't get the lock, requeue and will run it again later # Couldn't get the lock, requeue and will run it again later
unless lock unless lock
self.requeue(args) self.requeue(*args)
return return
end end


Expand Down

0 comments on commit b97adb9

Please sign in to comment.