I have Azure Functions setup to run off a blob trigger, (so when a blob is added to a container, it should fire off). The Function does not run until i open the function app in the portal. then it will pick up any blobs that were added and process them like normal. Why do i need to open the function app in the portal to get my jobs to fire off? It's almost like the functions app goes to sleep, and then wakes up when i browse to it. How can i prevent this from happening?
here is my CRON
{
"bindings": [
{
"name": "myBlob",
"type": "blobTrigger",
"direction": "in",
"path": "automated-sql-export",
"connection": "Conn"
}
],
"disabled": false
}