Azure WebJob Command Timeout

后端 未结 2 1994
遇见更好的自我
遇见更好的自我 2021-01-01 22:40

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

2条回答
  •  长发绾君心
    2021-01-01 23:07

    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.

提交回复
热议问题