Some of my functions are having problems, and I can't identify why. My functions only communicate with the database and do not make calls to other functions. I'm getting the following error:
TypeScript
Synchronous function execution timed out. Use asynchronous execution instead, or ensure the execution duration doesn't exceed 30 seconds.
Error Code: 408
I use a stress testing tool, and this error usually occurs when I increase the number of threads (users) in the tool. what could it be?
TL;DR
Developers are encountering a "Synchronous function execution timed out" error code 408 when stress testing their functions, particularly when increasing the number of threads. This error suggests the function is taking too long to execute. Consider optimizing the function or switching to asynchronous execution to prevent the timeout issue.Recommended threads
- i need help!
I was working on my project and I just can't stop receiving this message. Is something wrong?
- redirect_uri errors on flutter client
Hi all, I'm using the flutter client for my app to do appwrite auth and use the JWTs to send to my backend. When I try to sign in with SSO, I get this: https:/...
- Request for JWKS Endpoint and OIDC Disco...
Hey Appwrite Team, Do you have plans to support JWKS and a well-known OIDC discovery endpoint? This would let us verify Appwrite JWTs in other services using st...