Can a mistake be easily made with scheduling? E.g....
# pacc-july-6-2023
d
Can a mistake be easily made with scheduling? E.g. schedule for production at 5pm, but because of time zone, it is 6pm?
j
A deployment will run when you schedule it to run. You can see upcoming flow runs in the UI, so that could be helpful if you make a mistake.
d
Thanks. So can the scheduling be trusted, or would you recommend always checking the UI once a deployment has been scheduled?
j
Up to, but it should be scheduled for whatever you create. If it’s a super-complex RRule schedule, I’d check it out, just to check my own logic.
e
@dainslie you can also explicitly declare the timezone (which I would always recommend doing):
👍 1
d
Thanks chaps
e
Copy code
schedule:
  cron: "0 0 * * *"
  timezone: UTC
^ Midnight UTC
j
good call
🪩 1
d
🕺