0
I’m trying to publish a webjob on Azure and even the publishing part is all right. He can publish and I can run Webjob normally, but when he tries to schedule Webjob in the "Scheduled" model he throws the error below and can’t leave it in Scheduled mode going back to On Demand mode.
Error launched while trying to publish webjob
Error : An error occurred while Creating the Webjob status code does not indicate Success: 409 (Conflict).
Does anyone know what might be going on?
My webjob-Publish-Settings.json
{
"$schema": "http://schemastore.org/schemas/json/webjob-publish-settings.json",
"webJobName": "assinatura",
"startTime": "2016-03-14T00:00:00-03:00",
"endTime": null,
"jobRecurrenceFrequency": "Hour",
"interval": 1,
"runMode": "Scheduled"
}
Good morning William, thank you for your reply. I’m with him in the Scheduled model already, but I can’t even publish him It also includes my webjob-Publish-Settings.json in the text above
– Diego Soek