An Azure service that provides an event-driven serverless compute platform.
Azure Timer Function Issues
I have created a timer azure function in c# using 7 isolated using v 4 of Azure Functions. When I run it on my machine locally it works fine. It consists of the timer file and a Program.cs. After having deployed it will execute correctly on startup but when the timer gets instantiated from the time trigger it runs for like 3 ms and quits and says completed. Like the timer ran output the logs but never kicked off the Program.cs to run the code. Is there configuration I can do or need to do to get this to run my Program.cs every run or I can add to assure this runs everytime? I am assuming everything is working correctly because if I startup the app it works fine on startup only doesn't work when time triggered which is all the time.