I'm using VS 2013 Update 4. I have a web job like below. After I did Publish as Azure WebJobs from Visual Studio, the job became "On Demand". Is there way to get around this today? Thank you.
P.S. Is there way to modify the WebJob inside the Azure Portal? Right clicking on the job only showed Run and Delete.
Edit: I noticed a couple of things hours later. First, interestingly I just found the "On Demand" job was actually running at my specified interval. Secondly logging back to the original azure management site it was showing my job as "Scheduled" while the new portal showing it as "On Demand". Is this a typo in the new azure portal?
{
"$schema": "http://schemastore.org/schemas/json/webjob-publish-settings.json",
"webJobName": "MyJob",
"startTime": "2015-06-05T12:15:00-08:00",
"endTime": null,
"jobRecurrenceFrequency": "Hour",
"interval": 1,
"runMode": "Scheduled"
}