mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Avoid casting worker_timeout twice (#1838)
This commit is contained in:
parent
13567c9dcd
commit
f2240e3b2c
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ module Puma
|
|||
raise "The minimum worker_timeout must be greater than the worker reporting interval (#{min})"
|
||||
end
|
||||
|
||||
@options[:worker_timeout] = Integer(timeout)
|
||||
@options[:worker_timeout] = timeout
|
||||
end
|
||||
|
||||
# *Cluster mode only* Set the timeout for workers to boot
|
||||
|
|
Loading…
Add table
Reference in a new issue