I am facing this problem: I created Azure Function in Python which will trigger on 12th hour of every day. But the problem is that whenever I open this function in portal.azure.com my function triggers and execute (regardless of scheduled time). I have added this in my function.json file but still facing this problem:
{
"scriptFile": "__init__.py",
"bindings":
[{
"name": "mytimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 1 13 * * *",
"RunOnStartup": false,
}]}