# File lib/termtter/httppool.rb, line 9 def self.start(host, port = 80) count = config.retry || 3 begin yield(connection(host, port)) rescue EOFError finish(host, port) if count > 0 count -= 1 retry end raise end end