# File lib/unicorn/configurator.rb, line 187
  def timeout(seconds)
    set_int(:timeout, seconds, 3)
    max = 0x7ffffffe # Rainbows! adds one second to this for safety
    set[:timeout] = seconds > max ? max : seconds
  end