hello guys,
i created a function and I set the schedule to run every 1hour but it is being run every minutes,
here is my json
TypeScript
"$id": "66650d7e6de10dd97079",
"name": "statusStory24hoursCompletion",
"runtime": "node-16.0",
"execute": ["any"],
"events": [],
"schedule": "* */1 * * *",
"timeout": 900,
"enabled": true,
"logging": true,
"entrypoint": "src/main.js",
"commands": "npm install",
"ignore": [
"node_modules",
".npm"
],
"path": "functions/statusStory24hoursCompletion"
}```
is there anything i'm getting wrong here?
TL;DR
Function set to run every 1 hour but running every minute.
Developer set schedule incorrectly. Use `"schedule": "0 * * * *"` for hourly schedule.Recommended threads
- Scheduled works locking the entire Maria...
I have a scheduled function and apparently that or something is locking the entire MariaDB database and Appwrite is giving MariaDB errors. This error persists e...
- Python Function not working
I am getting this issue as well. Doesnt look like there was a solution as you guys were not able to replicate. Below is my code as well as the error. I started...
- Function was working: Failed to load ent...
I had a Bun function deployed two months ago working until 2 days ago on a daily basis, now I'm getting: Failed to load entrypoint, file src/main.js does not ex...