我正在为startMonitoringSignificantLocationChanges
编写自定义插件。该插件将根据我的服务器转换请求/响应。我得到kong
。
经过一些调试后,我发现只要设置
[info] 27#0: *588 client <x> closed keepalive connection
和我转变后的回应。我遵循了kong提供的现有ngx.arg[1]
插件。
这是response-transformer
kong
函数的正文:
body_filter
我在本地虚拟服务器上运行了相同的插件。它工作正常。但是当我代理到实际服务器时,出现了local ctx = ngx.ctx
local chunk, eof = ngx.arg[1], ngx.arg[2]
ctx.rt_body_chunks = ctx.rt_body_chunks or {}
ctx.rt_body_chunk_number = ctx.rt_body_chunk_number or 1
if eof then
local someChunks = concat(ctx.rt_body_chunks)
local aBody = responseTransformer.transform(theConf, someChunks)
aBody = unEscapeString(aBody)
ngx.arg[1] = aBody or someChunks
else
ctx.rt_body_chunks[ctx.rt_body_chunk_number] = chunk
ctx.rt_body_chunk_number = ctx.rt_body_chunk_number + 1
ngx.arg[1] = nil
end
错误。
从kong日志中,我可以看到响应已正确转换。
使用closed keepalive connection
,我得到了响应正文的一半。
答案 0 :(得分:0)
找到原因。服务器正在发送Content-Length
标头。在重写正文期间,此保持不变。因此,在交付全部内容之前,连接已关闭。
要解决此问题,我必须清除Content-Length
函数中的header_filter
标头:
kong.response.clear_header("Content-Length")