I am trying to schedule a function execution from a different function. The following is my code that is supposed to schedule the function call.
final scheduleTime = DateTime.now().add(Duration(seconds: 30));
functions.createExecution(
functionId: functionId,
body: token,
xasync: true,
scheduledAt: scheduleTime.toUtc().toIso8601String(),
);
My appwrite self-hosted version is 1.6.0 My dart_appwrite version is 13.0.0 The problem is that the function does not get executed, it does not appear in any shape or form in the web control panel. If I remove xasync: true and scheduledAt it gets correctly executed immediately. What could be the problem?
Recommended threads
- [Beginner] CLI --queries Syntax Error & ...
Hi everyone! I am a beginner with Appwrite and trying to use the CLI, but I'm stuck with a syntax error. Any guidance would be greatly appreciated! 🙏 **Enviro...
- Cloud function deploy stucks in processi...
Been trying for the last hours to deploy my function but for whatever reason, alwasy stuck on processing!
- [SOLVED] curl error Number: 6 — function...
Hello, I invested a lot of time in this error in a fresh install of appwrite 1.8.1 and lasted until fix, this if for helping anyone that can have the same weird...