We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a190aeb commit 11403c0Copy full SHA for 11403c0
supabase/_sync/client.py
@@ -199,7 +199,9 @@ def functionTimeout(self, timeout: int):
199
"""Set function timeout"""
200
if self._functions:
201
assert timeout > 0, "Timeout must be positive." # No negative timeout.
202
- self._functions._client.timeout = min(int(timeout), 150) # >150 returns HTTP-504.
+ self._functions._client.timeout = min(
203
+ int(timeout), 150
204
+ ) # >150 returns HTTP-504.
205
206
# async def remove_subscription_helper(resolve):
207
# try:
0 commit comments