You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two issues with try/except handling in orchestrator functions
Only the first task in an except block actually runs
The completed action in the except block always results in the original error being re-raised
The issue is that the internal state machine does not correctly clear the error status of a previously failed task, making it appear as if all subsequent tasks fail with the same error.