Azure Logic Apps not triggering on schedule when using Recurrence trigger with timezone settings
I'm having an issue with my Azure Logic App that is set to trigger on a schedule using the Recurrence trigger. The Logic App is configured to run every day at 9 AM in the 'Pacific Standard Time' timezone. However, it seems that the Logic App is not triggering at the expected time. When I check the run history, there are no signs of the Logic App running at all during that time. I've ensured that the timezone is correctly set in the Recurrence trigger configuration, but I've noticed that the trigger runs as per UTC time instead. Hereβs the configuration I used: ```json { "recurrence": { "frequency": "Day", "interval": 1, "startTime": "2023-01-01T09:00:00-08:00", "timeZone": "Pacific Standard Time" } } ``` I have also tried changing the timezone to 'America/Los_Angeles' but it still does not trigger at the expected local time. Additionally, I checked the settings in the Logic App to ensure that the 'Run on schedule' option is enabled. Is there a known issue with the Recurrence trigger and timezone settings, or is there something that I might be missing in my configuration? Any insights or recommendations would be greatly appreciated!