Hey there,
I've set up an action I'd like to run at 12:30am EST every night. I've set up my trigger as the following:
wsk trigger create test-t4l \
--feed /whisk.system/alarms/alarm \
--param cron "30 0 * * *" \
--param stopDate "2021-10-31T23:59:00.000Z"
The trigger is created successfully and when I "get" the trigger, it shows the correct cron schedule. However, I checked the activation logs this morning and the action did not run until 4:30am.
Am I missing a timezone difference or something? I noticed the datetime for when my action is saved is +4 hours compared to EST.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @keilorblend360 , the alarms are scheduled in UTC timezone. I hope it should have been fired at the correct time then? Otherwise, please let us know.
Views
Replies
Total Likes
Yeah that kind of stinks. We recently had to adjust all of our action CRON triggers for daylight savings. Every time-based trigger shifted an hour ahead. Anything running at 5am, ran at 4am, etc.
Views
Replies
Total Likes
Views
Replies
Total Likes
As mentioned earlier, the cron triggers are based on UTC. So yes, if there is a daylight saving in your timezone, you would need to adjust the triggers.
Wrt updating cron time, you're right it's not possible to update alarms feed once created. You could instead create a new trigger with correct time feed (2.30), then update the rule to map to the new trigger.
Views
Replies
Total Likes
Views
Likes
Replies