'Custom cron job for app engine using cron.yaml
How do I write
"Every minute in Monday to Friday between 10 am to 6 pm"
In cron.yaml?
Solution 1:[1]
* -> Every minute
10-18 -> from 10 to 18
* -> Every day of the month
* -> All the months
1-5 -> From Monday to Friday
For reference
However, you can still use Cloud Scheduler with an App Engine target for that and would be a more standard way to configure it.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 |