この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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.
トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計