From c91e85840aae3a26975fdcaef3c05cfabd5966b4 Mon Sep 17 00:00:00 2001 From: Zapotek Date: Mon, 3 Jan 2011 09:14:41 +0200 Subject: [PATCH] removed max_concurrency (it was in the wrong place) --- examples/times.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/times.rb b/examples/times.rb index f4cdb539..91390056 100644 --- a/examples/times.rb +++ b/examples/times.rb @@ -13,7 +13,7 @@ 10.times { |i| - req = Typhoeus::Request.new( urls[ i % urls.size], :max_concurrency => 10 ) + req = Typhoeus::Request.new( urls[ i % urls.size] ) req.on_complete { |res| puts 'URL: ' + res.effective_url