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
- Native logs detected in Appwrite Cloud
i'm always getting this error ```Native logs detected. Use context.log() or context.error() for better experience. (node:12) Warning: Setting the NODE_TLS_REJE...
- Different Environments
Hello, good afternoon! I'm starting to use Appwrite and I have a question: how can I configure three different environments (such as development, staging and pr...
- Creating functions for FCM Token based M...
I have previously setup cloud run functions on my firebase project, which im looking to migrate to appwrite. I need help on getting started, and getting me thro...