Skip to content

Require file with coroutine startup causes error #2408

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
semyon422 opened this issue Apr 6, 2025 · 0 comments
Open

Require file with coroutine startup causes error #2408

semyon422 opened this issue Apr 6, 2025 · 0 comments

Comments

@semyon422
Copy link

test.lua:

coroutine.wrap(function() print("hello") end)()

Requiring with luajit:

$ luajit -e "require'test'"
hello

Requiring in content_by_lua_block:

http {
    server {
        listen 8080;
        lua_code_cache off;

        location / {
            content_by_lua_block {
                require("test")
            }
        }
    }
}
$ curl localhost:8080
500 error html page

Error log:

2025/04/06 18:49:55 [error] 2931732#0: *2 lua entry thread aborted: runtime error: attempt to yield across C-call boundary
stack traceback:
coroutine 0:
	[C]: in function 'require'
	content_by_lua(nginx.conf:15):2: in main chunk, client: 127.0.0.1, server: , request: "GET / HTTP/1.1", host: "localhost:8080"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant