# File lib/net/http/connection_pool.rb, line 39 def initialize options = {} @pool = [] @pool_mutex = Mutex.new @open_timeout = options[:open_timeout] || 15 @idle_timeout = options[:idle_timeout] || 60 end