File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 5
5
from httpx import Timeout
6
6
from postgrest .constants import DEFAULT_POSTGREST_CLIENT_TIMEOUT
7
7
from storage3 .constants import DEFAULT_TIMEOUT as DEFAULT_STORAGE_CLIENT_TIMEOUT
8
+ from supafunc .utils import DEFAULT_FUNCTION_CLIENT_TIMEOUT
8
9
9
10
from supabase import __version__
10
11
@@ -42,6 +43,9 @@ class ClientOptions:
42
43
storage_client_timeout : Union [int , float , Timeout ] = DEFAULT_STORAGE_CLIENT_TIMEOUT
43
44
"""Timeout passed to the SyncStorageClient instance"""
44
45
46
+ function_client_timeout : Union [int , float , Timeout ] = DEFAULT_FUNCTION_CLIENT_TIMEOUT
47
+ """Timeout passed to the SyncFunctionsClient instance."""
48
+
45
49
flow_type : AuthFlowType = "implicit"
46
50
"""flow type to use for authentication"""
47
51
You can’t perform that action at this time.
0 commit comments