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
- Appwrite Scale beta
Hi I was on the appwrite scale beta but I didn't realise it wouldn't automatically downgrade me back to pro afterwards. I didn't have $600 in my linked bank c...
- OAuth2 gives general_bad_request
Hey hey. OAuth2 authentication (GitHub provider) throws a general_bad_request error when attempting to log in after account deletion through dashboard. **Steps...
- Mock Email
Hello, How can I create and use mock email addresses for testing purposes, allowing users to simulate email-based authentication or sign-in without needing real...