mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Fix some very minor typo's
This commit is contained in:
parent
b2c481bef7
commit
b79841b6b3
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
||||||
```ruby
|
```ruby
|
||||||
Sidekiq.configure_client do |config|
|
Sidekiq.configure_client do |config|
|
||||||
require 'sidekiq/middleware/client/unique_jobs'
|
require 'sidekiq/middleware/client/unique_jobs'
|
||||||
cnfig.client_middleware do |chain|
|
config.client_middleware do |chain|
|
||||||
chain.add Sidekiq::Middleware::Client::UniqueJobs
|
chain.add Sidekiq::Middleware::Client::UniqueJobs
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -46,7 +46,7 @@ get to this big milestone!
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
- Implement "safe shutdown". The messages for any workers that
|
- Implement "safe shutdown". The messages for any workers that
|
||||||
are stil busy when we hit the TERM timeout will be requeued in
|
are still busy when we hit the TERM timeout will be requeued in
|
||||||
Redis so the messages are not lost when the Sidekiq process exits.
|
Redis so the messages are not lost when the Sidekiq process exits.
|
||||||
[#110]
|
[#110]
|
||||||
- Work around Celluloid's small 4kb stack limit [#115]
|
- Work around Celluloid's small 4kb stack limit [#115]
|
||||||
|
|
Loading…
Reference in a new issue