Logic App Trigger Time gets delayed one minute each day

Anonymous
2022-08-08T20:16:24.077+00:00

I am trying to understand why my Logic app does not start at hh:10, but it stats at hh:35 (after getting delayed almost a minute each day over several days).
229217-image.png

According to the logic, it should run hh:10 every two hours.

     "recurrence": {  
                "frequency": "Hour",  
                "interval": 2,  
                "startTime": "**2022-06-27T14:10:00Z**",  
                "timeZone": "Pacific Standard Time"  
            },  
            "type": "ApiConnection"  

But, when I look at Run History, it runs around hh:35.

It appears that each day, it gets delayed by about one minute.

229218-image.png

What is going on?

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,554 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Alistair Ross 7,466 Reputation points Microsoft Employee
    2022-08-09T08:15:08.21+00:00

    Hi @Anonymous

    This trigger is a recurring connection-based trigger

    In recurring connection-based triggers, such as Office 365 Outlook, the schedule isn't the only driver that controls execution. The time zone only determines the initial start time. Subsequent runs depend on the recurrence schedule, the last trigger execution, and other factors that might cause run times to drift or produce unexpected behavior, for example:

    Whether the trigger accesses a server that has more data, which the trigger immediately tries to fetch.

    • Any failures or retries that the trigger incurs.
    • Latency during storage calls.
    • Not maintaining the specified schedule when daylight saving time (DST) starts and ends.
    • Other factors that can affect when the next run time happens.

    For more information, review the following documentation:

    kind regards

    Alistair Ross


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.