Cron-style Alarm Trigger | Community
Skip to main content
Level 2
August 28, 2020
Question

Cron-style Alarm Trigger

  • August 28, 2020
  • 1 reply
  • 1890 views

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. 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

Adobe Employee
September 7, 2020

Hi @kbrown-blend360 , the alarms are scheduled in UTC timezone. I hope it should have been fired at the correct time then? Otherwise, please let us know.

Adobe Employee
November 9, 2020

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.