mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
polish
This commit is contained in:
parent
f57bdca369
commit
5e3a57e87e
1 changed files with 7 additions and 5 deletions
12
Changes.md
12
Changes.md
|
@ -5,11 +5,8 @@
|
||||||
HEAD
|
HEAD
|
||||||
---------
|
---------
|
||||||
|
|
||||||
- Easier way to test enqueuing specific ActionMailer and ActiveRecord delayed jobs. Instead of manually
|
- **Performance tuning**, Sidekiq should be 10-15% faster now [#4303, 4299,
|
||||||
parsing embedded class, you can now test by fetching jobs for specific classes. [fatkodima, #4292]
|
4269, fatkodima]
|
||||||
```ruby
|
|
||||||
assert_equal 1, Sidekiq::Extensions::DelayedMailer.jobs_for(FooMailer).size
|
|
||||||
```
|
|
||||||
- **Dark Mode support in Web UI** (further design polish welcome!) [#4227, mperham,
|
- **Dark Mode support in Web UI** (further design polish welcome!) [#4227, mperham,
|
||||||
fatkodima, silent-e]
|
fatkodima, silent-e]
|
||||||
- **Job-specific log levels**, allowing you to turn on debugging for
|
- **Job-specific log levels**, allowing you to turn on debugging for
|
||||||
|
@ -64,6 +61,11 @@ enum 8.522311 0.419826 8.942137 ( 9.785079)
|
||||||
```ruby
|
```ruby
|
||||||
Sidekiq::Client.push_bulk("class" => FooJob, "args" => [[1], [2]], "at" => [1.minute.from_now.to_f, 5.minutes.from_now.to_f])
|
Sidekiq::Client.push_bulk("class" => FooJob, "args" => [[1], [2]], "at" => [1.minute.from_now.to_f, 5.minutes.from_now.to_f])
|
||||||
```
|
```
|
||||||
|
- Easier way to test enqueuing specific ActionMailer and ActiveRecord delayed jobs. Instead of manually
|
||||||
|
parsing embedded class, you can now test by fetching jobs for specific classes. [fatkodima, #4292]
|
||||||
|
```ruby
|
||||||
|
assert_equal 1, Sidekiq::Extensions::DelayedMailer.jobs_for(FooMailer).size
|
||||||
|
```
|
||||||
- Add `sidekiqmon` to gemspec executables [#4242]
|
- Add `sidekiqmon` to gemspec executables [#4242]
|
||||||
- Gracefully handle `Sidekiq.logger = nil` [#4240]
|
- Gracefully handle `Sidekiq.logger = nil` [#4240]
|
||||||
- Inject Sidekiq::LogContext module if user-supplied logger does not include it [#4239]
|
- Inject Sidekiq::LogContext module if user-supplied logger does not include it [#4239]
|
||||||
|
|
Loading…
Add table
Reference in a new issue