spacewander commented on issue #5925:
URL: https://github.com/apache/apisix/issues/5925#issuecomment-1000977147
Look like it is because the tail call optimization in LuaJIT.
If you change the
```
return fetch_old_token("token", ctx)
```
to
```
local r = fetch_old_token("token", ctx)
return 1
```
, there will be a stack overflow.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]