@MikeUrnun
I have one Logic App Standard (App service plan : l1v2:5) . The blob storage container will be getting multiple files . I want to trigger this logic app by using built in Blob Trigger connector , but I want to run the logic App run one at a time .
Suppose I have following types of files :
File1.xml
File2.xml
File3.xml
Then The logic app will be triggered by picking up File1.txt first and then after completion of the process of File1.Txt , the logic app should trigger again to pick up the second file .
I followed this thread https://docs.microsoft.com/en-us/answers/questions/137342/how-to-ensure-only-one-azure-function-blobtrigger.html
as Logic app standard also works internally as a Function app , But unable to achieve it .
Also I have gone through this documentation https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-actions-triggers#operation-options
to make the "OperationOptions" : "SingleInstance" , but I am unable to achieve this
I am using a host.json V2.0 version
Please let me know if any other info is needed
