Rank 1: Thread
Hello! I'm running self-hosted Appwrite 1.9.0. I have a Dart function (tried both dart-3.5 and dart-3.10 runtimes) with these events configured:
teams.staff.memberships.*.deleteI also tried other event types — same behavior.
When an event fires, appwrite-worker-functions logs show:
Fetched 1 functions...
Iterating function: Manage Topic Subscriptions
Triggered function: teams.staff.memberships.69cdb30f756bca6570d7.create
Fetched 0 functions...
So the worker finds my function, iterates it, triggers it — but then immediately "Fetched 0 functions" and nothing happens.
In the Console → Functions → Executions tab — no new executions appear. However, in the Usage section → Total Executions, the counter does increment each time an event fires. So Appwrite seems to count the execution, but it never actually runs or produces any output.
The executor is healthy — runtimes warm up fine, and the function works perfectly when executed manually via the Console or API. The issue is only with event triggers.
Any ideas what could cause this?