You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
main function started
serving the request with /home/deno/functions/hello
[Info] Listening on http://localhost:9999/
[Info] starting 'hello'
Segmentation fault (core dumped)
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
(git clone git@github.com:supabase/supabase.git && cd supabase/docker)
docker run -it --net=host --entrypoint=/bin/bash -v ./volumes/functions:/home/deno/functions supabase/edge-runtime:v1.22.3
On the host system, edit volumes/functions/hello/index.ts to contain the example code above
Inside the container, run edge-runtime start --port 9000 --main-service /home/deno/functions/main
On the host system, run curl http://localhost:9000/hello
System information
OS: Manjaro Linux 23.1.0
PS: Thank you for your great work on Supabase! I've been enjoying working with it a lot and we're planning to use it on many upcoming projects.
The text was updated successfully, but these errors were encountered:
...I just realized that this is most likely a duplicate of #199. The error seems to occur with any non-trivial function content that takes longer than a few ms to execute. Here is another example:
Bug report
Describe the bug
The following edge function
results in the following output:
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
git clone git@github.com:supabase/supabase.git && cd supabase/docker
)docker run -it --net=host --entrypoint=/bin/bash -v ./volumes/functions:/home/deno/functions supabase/edge-runtime:v1.22.3
volumes/functions/hello/index.ts
to contain the example code aboveedge-runtime start --port 9000 --main-service /home/deno/functions/main
curl http://localhost:9000/hello
System information
PS: Thank you for your great work on Supabase! I've been enjoying working with it a lot and we're planning to use it on many upcoming projects.
The text was updated successfully, but these errors were encountered: