Lawrence Wang

Results 39 comments of Lawrence Wang

Found a related issue: https://github.com/vercel/vercel/pull/7094

This happens to me in a Typescript file, when manual wrapping.

It stopped happening after I updated and restarted VS Code 🎉

> What specific features of supabase do you need to use? We already have async support on auth, database access and storage; we just haven't yet written an async client...

Is there any downside to just wrapping all sync calls in `loop.run_in_executor` like this, while we wait for the release of async support? ```python import asyncio import concurrent.futures async def...

Any plans to implement this soon?

> Hey @pranaypratyush, there are some docs for the extension here: https://supabase.github.io/pg_graphql/ > > And some docs to use it on the supabase platform here: https://supabase.com/docs/guides/api#graphql-api-1 > > Is that...

You can work around this by setting the global methods in a slightly different way, e.g.: ```js setTimeout = (fn, ms = 0) => Timer.setTimeout(fn, ms) setInterval = (fn, ms...