Skip to content

Commit

Permalink
Update changes, bump version, release
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Jun 17, 2015
1 parent 1de9ec2 commit 1499493
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -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
-----------
Expand Down
2 changes: 1 addition & 1 deletion lib/sidekiq/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Sidekiq
VERSION = "3.3.5"
VERSION = "3.4.0"
end

0 comments on commit 1499493

Please sign in to comment.