
I have a function (dart 3.3) that performs some heavy computation. Now, I understand that I can't call it synchronously since it'll be terminated (timeout) long before it completes.
However, even after increasing the timeout to 15 minutes and running the function asynchronously (setting xasync: true
) I'm still getting the same error (after about 30s to 1min). Anyone with any idea on how I can keep the function running longer?
Executer logs:
[Error] Type: Exception
[Error] Message: An internal curl error has occurred within the executor! Error Number: 104. Error Msg: Connection reset by peer
[Error] File: /usr/local/app/http.php
[Error] Line: 1027

What's the output of docker ps -a
?

Here it is
Recommended threads
- Internal curl errors has occurred within...
Recently, I tried executing a function in my project. Got this error in failed requests randomly: ```Internal curl errors has occurred within the executor! Err...
- Functions seem to be broken
Whenever I try to execute a function it times out then when I try to run it again I get something along the lines of: "networkpolicies.networking.k8s.io "f43c5...
- Dynamic API Key issue
I have created new function in Appwrite cloud. In function I using below code to initialize Appwrite client const client = new Client() .setEndpoint(con...
