I have 2 different functions in single azure app and both the functions are triggers using azure storage on 2 different containers or file system. The issue I am facing is, only one function is triggers at a time. If both the functions are enabled, only the first one is triggered and other one is not triggered. If I enable one function only that function is triggered which is as expected. What could be the possible issue?
Is there any issue in Azure functions.
only one function is triggers at a time
? So did you mean all the time no matter how many functions you have you could only trigger one blob function, others could not be triggered(with different path)? In my test two blob function with different path could be triggered, however I trigger them one by one(could not upload the blobs at a time). – George Chen