I have a cloud function called onWaitlist which listens for changes on a database collection but each execution fails with the following error.
Internal curl error has occurred within the executor! Error Number: 52\\nError Code: 500
The function directory contains an index.js file which exports a default function.
export default async ({req, res, log}) => {
log("executing", req.bodyJson)
const {$id} = req.bodyJson;
//...
But nothing is logged and the function always fails. Any ideas why?
Recommended threads
- Worker functions stuck on "Fetched 0 fun...
Appwrite Version: 1.9.0 Bug Description: The appwrite-worker-functions container gets stuck in an infinite loop logging "Fetched 0 functions..." while scheduled...
- I am using s3 for app storage but is it ...
_APP_STORAGE_DEVICE=s3 puts everything to the s3 storage but i need to be able to keep the function builds and site in the local and not waste the cloud storage...
- Local Serverless Function Testing: Are D...
I have followed the instructions to get the CLI working, and have been able to log-in, initialize my project, and created a simple Python function, which calls ...