We are having issue with Azure Web Jobs. We created a C# console application, zipped it, and created the new Web Job. It\'s a c# console app that will constantly hit one of
This seems to have solved my problem:
if (Counter % 25 == 0) Console.WriteLine("Heartbeat");
I guess you have to keep writing out to console to keep the JOB running.