Azure pipeline doesn't wait for function app to complete
I got a function app which can have a very long running operation. I am triggering it with an Azure yaml pipeline like this: - task: AzureFunction@1 displayName: Run Dummy function inputs: function: '$(FunctionURL)/api/DummyFunction' key: '$(FunctionKey)' method: 'POST' body: $(AzureFunctionBody)…