냥냐챠

Results 74 comments of 냥냐챠

Your version of Deno is different from the version of Deno that `edge-runtime` is using internally. I assume the version of Deno you are mentioning is a standalone. The actual...

Hey! @meyer9 The root reason causing the leak memory is at the Deno code base I think. I've already submitted such concerns to their repository, And they said they would...

Hi! @jeremyisatrecharm 😋 Yeah, the Deno team seems to be taking longer time than I expected to fix the memory leak. It may not be a priority for them. So,...

Note: This is probably due to a Windows path separator being in the argument.

https://github.com/supabase/cli/blob/main/internal/functions/download/download.go#L169 https://github.com/supabase/edge-runtime/blob/main/crates/sb_graph/lib.rs#L144

```rust fn main() { let x = Path::new("\\aaa\\aa"); dbg!(x.strip_prefix("/")); } ``` ``` [src/main.rs:6] x.strip_prefix("/") = Err( StripPrefixError( (), ), ) ```

This appears to be because the `postgres` package was trying to refer `Deno.stat`. In the edge runtime, this API is disabled due to security issues with the file system. Closing...

If you are deploying a self-hosted Supabase, You can get the logs of the GoTrue container with the `docker compose logs auth` (or `docker-compose logs auth`) command. In the case...

🧐 Looking at your Logflare log, it seems GenServer has terminated abnormally while executing specific NIF[^1], which parses JSON data on the Rust side. GenServer is dead, so as a...

I've made it possible to change the host port for accepting inspector sessions in the `experimental` section, but a recent commit seems to have added an extra `edge_runtime` section. Is...