“Failed finding child for sequence”
I see this related post and PR that may help fix this on the next .NET sdk release
I don’t quite understand the conditions being used to break out of the loop. Those look to me like they’ll break out of the loop if the overall process is done, correct?
On a related note, I’m not sure I understand the two conditions and the continue as new:
- If the code gets to these two conditions and it is not totally finished, I think these two conditions should behave the same (i.e. continue as new).
- Similarly, I actually think they already do behave the same: isn’t
batchStart + windowSize * batchSize
the same asbatchStart + totalProcessed
at this point in the code?