Skip to content

Commit 1888c09

Browse files
Fix edge functions timeout
1 parent 4f800f7 commit 1888c09

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

supabase/lib/client_options.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ class ClientOptions:
4343
storage_client_timeout: Union[int, float, Timeout] = DEFAULT_STORAGE_CLIENT_TIMEOUT
4444
"""Timeout passed to the SyncStorageClient instance"""
4545

46-
function_client_timeout: Union[int, float, Timeout] = DEFAULT_FUNCTION_CLIENT_TIMEOUT
46+
function_client_timeout: Union[int, float, Timeout] = (
47+
DEFAULT_FUNCTION_CLIENT_TIMEOUT
48+
)
4749
"""Timeout passed to the SyncFunctionsClient instance."""
4850

4951
flow_type: AuthFlowType = "implicit"

0 commit comments

Comments
 (0)