mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Update changes, bump version, release
This commit is contained in:
parent
1de9ec25d6
commit
149949373f
2 changed files with 11 additions and 2 deletions
11
Changes.md
11
Changes.md
|
@ -1,10 +1,19 @@
|
|||
HEAD
|
||||
3.4.0
|
||||
-----------
|
||||
|
||||
- Set a `created_at` attribute when jobs are created, set `enqueued_at` only
|
||||
when they go into a queue. Fixes invalid latency calculations with scheduled jobs.
|
||||
[#2373, mrsimo]
|
||||
- Don't log timestamp on Heroku [#2343]
|
||||
- Run `shutdown` event handlers in reverse order of definition [#2374]
|
||||
- Rename and rework `poll_interval` to be simpler, more predictable [#2317, cainlevy]
|
||||
The new setting is `average_scheduled_poll_interval`. To configure
|
||||
Sidekiq to look for scheduled jobs every 5 seconds, just set it to 5.
|
||||
```ruby
|
||||
Sidekiq.configure_server do |config|
|
||||
config.average_scheduled_poll_interval = 5
|
||||
end
|
||||
```
|
||||
|
||||
3.3.4
|
||||
-----------
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Sidekiq
|
||||
VERSION = "3.3.5"
|
||||
VERSION = "3.4.0"
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue