Skip to content

Commit c14c7f9

Browse files
Fix edge functions timeout
1 parent aceea08 commit c14c7f9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

supabase/_sync/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,9 @@ def storage(self):
177177
def functions(self):
178178
if self._functions is None:
179179
self._functions = SyncFunctionsClient(
180-
self.functions_url, self.options.headers, self.options.function_client_timeout
180+
self.functions_url,
181+
self.options.headers,
182+
self.options.function_client_timeout,
181183
)
182184
return self._functions
183185

0 commit comments

Comments
 (0)