冲突:不允许请求的作业更新。该作业已有待处理的操作
Conflict: The requested update for the Job is not allowed. The job already has a pending action
我在 Azure Automation 工作
它停留在排队状态超过一个小时
当我想通过 UI 取消它时,我收到以下消息:
Conflict: The requested update for the Job is not allowed. The job
already has a pending action.
我在使用 powershell stop-azurermautomationjob by id 时收到相同的消息
Stop-AzureRmAutomationJob -ResourceGroupName $ResourceGroupName -Id $jobId -AutomationAccountName $AutomationAccountName
如何解决?
根据设计,您无法在处于排队状态时对作业执行操作。但是,它不应处于排队状态超过 30 分钟。推荐的选项是复制代码,删除 Runbook,然后使用复制的代码重新创建。如果您继续看到此问题,请向 Azure 技术支持提出支持请求并提供 JobId 以供进一步调查。
我在 Azure Automation 工作 它停留在排队状态超过一个小时
当我想通过 UI 取消它时,我收到以下消息:
Conflict: The requested update for the Job is not allowed. The job already has a pending action.
我在使用 powershell stop-azurermautomationjob by id 时收到相同的消息
Stop-AzureRmAutomationJob -ResourceGroupName $ResourceGroupName -Id $jobId -AutomationAccountName $AutomationAccountName
如何解决?
根据设计,您无法在处于排队状态时对作业执行操作。但是,它不应处于排队状态超过 30 分钟。推荐的选项是复制代码,删除 Runbook,然后使用复制的代码重新创建。如果您继续看到此问题,请向 Azure 技术支持提出支持请求并提供 JobId 以供进一步调查。