1
0
forked from Tank/braga
braga/test.lua
2026-03-10 18:16:48 +00:00

11 lines
262 B
Lua

local sock = ngx.req.socket(true)
sock:settimeout(2000) -- one second timeout
local line, err, partial = sock:receive()
if not line then
ngx.say("failed to read a line: ", err)
--sock::close()
return
end
ngx.say("successfully read a line: ", line)