Skip to content
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

httpx.ReadTimeout: timed out Supabase functions #814

Open
RedChops opened this issue Jun 3, 2024 · 0 comments
Open

httpx.ReadTimeout: timed out Supabase functions #814

RedChops opened this issue Jun 3, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@RedChops
Copy link

RedChops commented Jun 3, 2024

Feature request

Is your feature request related to a problem? Please describe.

When calling an Edge Function using client.functions.invoke(), if the function takes longer than 5 seconds to run I'll get a ReadTimeout exception

Describe the solution you'd like

I would like a way to configure the HTTPX timeout for Edge Function calls, the same way we can currently configure PostgREST and Storage. Or a way to supply a custom HTTPX client to supafunc-py

Describe alternatives you've considered

The following will let me create a client with a longer timeout, but it's accessing private interfaces:

supabase: Client = create_client(url, key, options=client_options)
func_headers = supabase.functions.headers
func_url = supabase.functions.url
timeout_client = utils.SyncClient(timeout=300.0, base_url=func_url, headers=func_headers, follow_redirects=True)
supabase.functions._client = timeout_client
@RedChops RedChops added the enhancement New feature or request label Jun 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant