I have written a HTTP trigger azure function that executes a series of operations (like add files to blob storage, list them, delete them or do some more time requiring tasks through orchestrator), according to Azure Durable Function.
I want to retrieve the status of such time requiring tasks through an additional azure function that, based on the job id of the orchestrator, returns "Pending", "Completed" or "Failed". In order to do that, I need to make a request inside the main HTTP trigger function to ask for such status.
I've tried:
- azure functions http.HttpRequest(url) and HttpRequest(url)
- requests.get(url)
Neither of them apparently works locally, since Visual Studio Code in debug mode completely freezes. Can it be due to authorization issues or is it not possible to trigger another azure function locally? Will it work once I deploy the code?
I've read the suggested articles in stackoverflow and the relative azure functions documentation, but none of them is providing a complete answer.








