Unexpected HTTP status code '412' - appending to variable in parallel loop #713
-
I have a logic app standard workflow that logs a lot of these exceptions: This workflow is using a loop in parallel. At first glance...nothing seems to go wrong in the workflow, so I assume the update of the variable is retried? cleaned up callstack looks like this: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I did some further checking myself: made a workflow that initializes an array variable with values 1-20 the copied variable shows a different order of the values...which is to be expected, but no values are lost based on this small test, I think these exceptions are not a problem. |
Beta Was this translation helpful? Give feedback.
I did some further checking myself:
made a workflow that initializes an array variable with values 1-20
then copied each value in this array to another array variable in a parallel loop
then checked the values in the copied array variable
this indeed reproduces the exception: Unexpected HTTP status code '412'
the copied variable shows a different order of the values...which is to be expected, but no values are lost
[ 2, 5, 1, 9, 8, 14, 13, 17, 18, 16, 4, 6, 11, 19, 20, 7, 10, 15, 3, 12]
based on this small test, I think these exceptions are not a problem.