remove unnecessary escape

This commit is contained in:
batrick 2012-03-30 03:14:31 +00:00
parent 49c3b4e84e
commit b2f3139284

View file

@ -855,7 +855,7 @@ local function getPipelineMax(response)
if response then
if response.header and response.header.connection ~= "close" then
if response.header["keep-alive"] then
local max = string.match( response.header["keep-alive"], "max\=(%d*)")
local max = string.match( response.header["keep-alive"], "max=(%d*)")
if(max == nil) then
return 40
end