Reputation: 77
I have a WebApp in Azure under which I have 10 WebJobs which runs in different schedules. Now based on business requirement, I need to stop the 2 jobs from running for next 2 weeks.
I heard that setting WEBJOBS_STOPPED = 1 in webapp appsettings, will stop all the webjobs. But I need to disable only 2 webjobs for only 2 weeks.
Is there any other Options?
I can do this by removing CRON expression from Settings.job. But I would like to know if there is any other approach in achieving this.
Upvotes: 0
Views: 982
Reputation: 5546
Based on the above shared information, we understood that you are trying to disable a specific triggered type webjobs.
Upvotes: 1