11 lines
161 B
Lua
11 lines
161 B
Lua
|
|
local function nested_e()
|
||
|
|
ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
|
||
|
|
end
|
||
|
|
|
||
|
|
nested_e()
|
||
|
|
ngx.say("OK")
|
||
|
|
|
||
|
|
-- ➤ curl test.localhost:8088/api/ngx/test/nested_exit
|
||
|
|
|
||
|
|
|