1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Update README.

This commit is contained in:
Tobias Svensson 2013-09-17 14:24:31 +01:00
parent b404d4c5b8
commit 1832f92c2f

View file

@ -174,10 +174,6 @@ Configuration
```ruby
Sidetiq.configure do |config|
# Thread priority of the clock thread (default: Thread.main.priority as
# defined when Sidetiq is loaded).
config.priority = 2
# Clock tick resolution in seconds (default: 1).
config.resolution = 0.5
@ -186,6 +182,9 @@ Sidetiq.configure do |config|
# When `true` uses UTC instead of local times (default: false)
config.utc = false
# Scheduling handler pool size (default: number of CPUs)
config.handler_pool_size = 5
end
```
<a name='section_Configuration_Logging'></a>