Currently I have a function deployed in Google Functions, which is triggered by a Cron Job using Cloud Scheduler in Google Cloud Platform.
The Cron Job Frequency in unix is the following: 0 9 1-7,15-21,29-31 * 1
Which means that it should be triggered every Monday in a Month at 9:00 AM, which day falls between 1st and 7th, 15th and 21st, 29th and 31st, respectively. Or in other words, it gets triggered every 2 weeks.
The following image (cron job testers) also confirms what I am intending to do.
As expected, yesterday March 15th (Monday) it got triggered, however today March 16th (Tuesday) it got triggered as well
I am wondering if this has happen to any of you and whether it's a problem with my cron job or either Google Cloud Scheduler doesn't interpret it this way.
Any help/experience is highly appreciated!!