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 3515be1 commit 1a65cedCopy full SHA for 1a65ced
supabase/_async/client.py
@@ -185,7 +185,9 @@ def functionTimeout(self, timeout: int):
185
"""Set function timeout"""
186
if self._functions:
187
assert timeout > 0, "Timeout must be positive." # No negative timeout.
188
- self._functions._client.timeout = min(int(timeout), 150) # >150 returns HTTP-504.
+ self._functions._client.timeout = min(
189
+ int(timeout), 150
190
+ ) # >150 returns HTTP-504.
191
192
# async def remove_subscription_helper(resolve):
193
# try:
0 commit comments