mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
Properly disable http pipelining
It's causing memory corruption issues along with image optimization. Rel: #633
This commit is contained in:
parent
911909f679
commit
ec3bb9169d
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ module Docs
|
|||
def initialize(options = {})
|
||||
@request_options = options.extract!(:request_options)[:request_options].try(:dup) || {}
|
||||
options[:max_concurrency] ||= 20
|
||||
options[:pipelining] = 0
|
||||
options[:pipelining] = false
|
||||
super
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue