Skip to content

Commit

Permalink
Merge branch 'master' into internal_rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Oct 28, 2015
2 parents a1270a2 + 9c9c6ca commit 7149c9b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Changes.md
@@ -1,3 +1,22 @@
# Sidekiq Changes

HEAD
-----------

- The exception triggering a retry is now passed into `sidekiq_retry_in`,
allowing you to retry more frequently for certain types of errors.
[#2619, kreynolds]
```ruby
sidekiq_retry_in do |count, ex|
case ex
when RuntimeError
5 * count
else
10 * count
end
end
```

3.5.1
-----------

Expand Down

0 comments on commit 7149c9b

Please sign in to comment.