- Power Automate (standard license, no premium)
- Scheduled flow running every 5 minutes
1. Get list of joined teams (standard Teams action)
2. For each team → **Graph HTTP**: `GET /v1.0/teams/{teamId}/channels?$select=id`
3. For each channel → **Graph HTTP**: `GET /v1.0/teams/{teamId}/channels/{channelId}/messages/delta?$filter=lastModifiedDateTime gt {startTime}`
4. **Graph HTTP**: `GET /v1.0/me/chats?$orderby=lastMessagePreview/createdDateTime desc&$top={n}`
5. For each chat → **Standard action** ("Get messages in a chat") with time filter and Top=10
About once per day, one of the Graph HTTP actions (or the standard "Get messages in a chat" action) gets stuck in **Running** state for several hours. The timeout setting on each action is set to **PT1M**, but it is never triggered — the action simply hangs.
- Set **timeout to PT1M** on all Graph HTTP actions → does not fire
- Set **retry policy to None** on all Graph HTTP actions → problem still occurs
- Reduced **parallel branch concurrency** to minimum → no improvement
- **Copying the flow** and re-enabling it resolves the issue temporarily, but the hang recurs within roughly 24 hours
- The problem is **not limited to Graph HTTP connector actions** — the standard Teams action "Get messages in a chat" also gets stuck in the same way
- Since both connector types are affected, this does not appear to be a connector-specific issue
- The hang occurs roughly once per day, not on every run
- Copying the flow gives temporary relief, suggesting some kind of per-flow state corruption, but this is just a guess
- **The frequency of the schedule appears to affect how long before the hang occurs**: when running every 5 minutes, the flow stops after approximately 8–10 hours; when reduced to every 10 minutes, it runs for approximately 30 hours before hanging. This suggests the issue may be related to cumulative run count or resource exhaustion rather than elapsed time alone.
1. Why does the PT1M timeout setting not fire when an action is in this hung state?
2. Is there a known issue with Graph API-related actions (both Graph HTTP connector and standard Teams connector) hanging indefinitely in scheduled flows?
3. Is there any reliable workaround short of using a premium HTTP connector or an external service (Azure Functions, etc.)?

Report
All responses (
Answers (