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
- Redis with user/pass doesn't work NO_AUT...
When trying to externalize my redis to a valkey server, i saw the user/pass doesn't work. After looking the appwrite code, i saw some of the init does not pass...
- Export, Import or Migration giving this ...
As you can see in yhe screenshot i am not able to export any data or export the data from tables. Also it is affecting the migration from appwrite to appwrite h...
- Timed out waiting for runtime error
execution id 6a3e0791978712d81ee0 im having issue with appwrite function runtime performance. even after 4gbram and cpu same function sometimes completes in a...