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
At one point #572 was fixed with this pull request #571.
If I do a single activity execution, the exception is propagated back up to the orchestrator. Good 👍
If I implement a fan out/fan in pattern like below, I don't get errors and only the activities that succeeded populate the $tasks variable.
$ErrorActionPreference="Stop"$ParallelTasks=foreach ($filein$FailedFiles) {
# Create $FileDetails objectInvoke-DurableActivity-FunctionName "ProcessAuditFileActivity"-Input $FileDetails-NoWait
}
$tasks=Wait-DurableTask-Task $ParallelTasks# 1 out of 2 tasks fails, $tasks only has one result and no errors from the failed activity, or exceptions thrown