16 lines
252 B
Lua
16 lines
252 B
Lua
local function nested_e()
|
|
if true then
|
|
ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
|
|
else
|
|
return "FOO"
|
|
end
|
|
end
|
|
|
|
local r = nested_e()
|
|
ngx.log(ngx.INFO, r)
|
|
ngx.say("OK")
|
|
|
|
-- ➤ curl test2.localhost:8088/api/ngx/test/nested_exit
|
|
|
|
|