API calls changed behaviour in Parallel situations
I am using Document Intelligence with a custom extraction model to extract (and later process) data from multi page PDFs. A durable function is orchestrating an activity function and adding a task for every page of these PDFs (using the uri and adding the page to extract via AnalyzeDocumentOptions) and using await Task.WhenAll(tasks); to execute them in paralell.
In the past, this would result in every API call returning the contents of the requested page.
As of a few days ago however, the calls are all returning the same results of the same page. I have rolled my codebase back to the lastest point where it was confirmed working and the changed behaviour persisted.
Has there been an active change to the serive/API or is this a bug?