Browse Source

Increase default :max_concurrency

Thibaut 12 years ago
parent
commit
6e9c16a1fc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/docs/core/requester.rb

+ 1 - 1
lib/docs/core/requester.rb

@@ -14,7 +14,7 @@ module Docs
 
     def initialize(options = {})
       @request_options = options.extract!(:request_options)[:request_options].try(:dup) || {}
-      options[:max_concurrency] ||= 5
+      options[:max_concurrency] ||= 20
       super
     end