简体   繁体   中英

Azure Batch - Update job priority on CloudJob (.Net)

I have a project in.Net and im trying to update the job priority of azure batch.

   CloudJob job = await batchClient.JobOperations.GetJobAsync(jobId);
    if (job != null)
     {
        job.Priority = jobUpdateRequest.Priority;                 
        job.Commit();                       
     }

when i run that, i got an error 'Operation returned an invalid status code 'Conflict'. Any suggestion?

Most likely the job is in a state where that property cannot be updated/patched. You will need to disable the job first (and ensure the job is in disabled state) before updating/patching the property. Then re-enable the job.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM