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 f6ad72c commit 775cba8Copy full SHA for 775cba8
supabase/_async/client.py
@@ -195,13 +195,6 @@ def functions(self):
195
)
196
return self._functions
197
198
- 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(
203
- int(timeout), 150
204
- ) # >150 returns HTTP-504.
205
206
# async def remove_subscription_helper(resolve):
207
# try:
0 commit comments