Skip to content

Commit b97bbd1

Browse files
juancarlospacosilentworks
authored andcommitted
Fix edge functions timeout
1 parent 9a66bdd commit b97bbd1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

supabase/_async/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@ def storage(self):
191191
def functions(self):
192192
if self._functions is None:
193193
self._functions = AsyncFunctionsClient(
194-
self.functions_url, self.options.headers, self.options.function_client_timeout
194+
self.functions_url,
195+
self.options.headers,
196+
self.options.function_client_timeout,
195197
)
196198
return self._functions
197199

0 commit comments

Comments
 (0)