Reputation: 1666
First time with .NET 6 runtime on Azure and I get the following error.
The time trigger function is not fired and I can not run it manually from portal.
Also, I try the following documentation https://learn.microsoft.com/en-us/azure/azure-functions/functions-manually-run-non-http but i get 404 not found error again.
*Time trigger working from localhost
*Visual Studio 2022 v 17.2.3
Upvotes: 2
Views: 2590
Reputation: 1666
Every time I create Time Trigger Azure function for NCRONTAB expression I use the following site https://crontab.guru/every-minute
In this case (once every 4 hours) is not working. So the 404 error not found based on an incorrect expression.
The valid expression is "0 0 */4 * * *" and i was using "0 */4 * * *"
Upvotes: 4