Method: Puma::DSL#max_fast_inline
- Defined in:
- lib/puma/dsl.rb
#max_fast_inline(num_of_requests) ⇒ Object
Deprecated.
Use #max_keep_alive instead.
1334 1335 1336 1337 |
# File 'lib/puma/dsl.rb', line 1334 def max_fast_inline(num_of_requests) Puma.deprecate_method_change :max_fast_inline, __method__, :max_keep_alive [:max_keep_alive] ||= Float(num_of_requests) unless num_of_requests.nil? end |