-
Notifications
You must be signed in to change notification settings - Fork 321
Open
Labels
Description
Severity
P1 - Critical (Blocking production)
Describe the Bug with repro steps
Delays should run for the specified delay time. Do Until's run the loop until the timeout is hit or conditions are met.
Process gets hung for hours and doesn't move to the next step until 5+ hours.
What type of Logic App Is this happening in?
Standard (Portal)
Are you experiencing a regression?
No response
Which operating system are you using?
Windows
Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg
Yes
Workflow JSON
{
"type": "Wait",
"inputs": {
"interval": {
"count": 1,
"unit": "Minute"
}
},
"runAfter": {
"Condition_13": [
"SUCCEEDED"
]
}
}
{
"type": "Until",
"actions": {
"HTTP-copy-copy": {
"type": "Http",
"runAfter": {
"Delay_90_Seconds_-copy": [
"SUCCEEDED"
]
}
},
"Parse_JSON-copy-copy": {
"type": "ParseJson",
"runAfter": {
"HTTP-copy-copy": [
"SUCCEEDED"
]
}
},
"Set_variable-copy-copy": {
"type": "SetVariable",
"runAfter": {
"Parse_JSON-copy-copy": [
"SUCCEEDED"
]
}
},
"Delay_90_Seconds_-copy": {
"type": "Http"
}
},
"runAfter": {
"Delay": [
"SUCCEEDED"
]
}
}Screenshots or Videos
No response
Environment
Latest version of Edge browser
Additional context
It was working great before, made a few changes and now for the past week I'm not able to do any runs on my logic app. I've recreated new workflows, removed and re-added the delays/do until's but no luck.
Reactions are currently unavailable