Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
We are in the process of starting up a new instance of thingworx version 9.2.0. I need a scheduler to execute at 5am local time (eastern), so the CRON string is set to 9AM UTC.
However, when daylight saving time ends, do I have to manually change the CRON string to 10AM UTC so that it will still execute at 5am local time? (During the install I set tomcat time zone to UTC as suggested in the install instructions.)
Solved! Go to Solution.
Since UTC does not observe DST, that is correct, you'd need to modify it manually.
You can also modify the scheduler to fire hourly and manually compute in code the DST hour, and execute it only if it's 5 AM...It's manual code, but still, stops you manually modifying the scheduler itself each DST change
Since UTC does not observe DST, that is correct, you'd need to modify it manually.
You can also modify the scheduler to fire hourly and manually compute in code the DST hour, and execute it only if it's 5 AM...It's manual code, but still, stops you manually modifying the scheduler itself each DST change
That's a great idea, I wish I'd thought of that!
Thanks for the help, Vladimir