Configure WebJob Azure to run every 15 minutes

2

Good afternoon, I'm trying to publish a WebJob on azure to run every 15 minutes.

I'm publishing directly through visual studio and have already put the settings.job file.

My problem is that when I put it to run every 3 minutes it works fine, but when I put 15 minutes, it only works at full hours (0,15,30,45).

Here's how my settings.job file looks:

  

{"schedule": "0 0/15 * * * *"}

    
asked by anonymous 28.09.2017 / 20:30

1 answer

0

Today's recommendation is to use Azure Functions with Time Trigger.

link

    
29.09.2017 / 17:01