Files
resty_functions/test_scripts/nested_exit.lua
T

15 lines
230 B
Lua
Raw Normal View History

2022-03-12 21:50:52 +08:00
local function nested_e()
2022-03-12 21:54:40 +08:00
if true then
ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
else
return "FOO"
end
2022-03-12 21:50:52 +08:00
end
2022-03-12 21:54:40 +08:00
local r = nested_e()
2022-03-12 21:50:52 +08:00
ngx.say("OK")
-- ➤ curl test.localhost:8088/api/ngx/test/nested_exit