Azure WebJob QueueTrigger message is not deleted from queue

纵饮孤独 提交于 2019-12-05 09:39:33

I ran into this problem because container are not always auto-created. So, I created:

azure-jobs-host-output
azure-webjobs-hosts

I had the exact same problem, I had a separate storage account for the data and logs. If I used the same storage account for both this bug stops.

Check the webjobs SDK version, if that is lower than the 1.1.1.0, then ensure you are with latest version.

so it should be like below, we had the same issue with webjobs sdk version 1.0.1.0 and upgrading this to latest one fixed the issue.

  1. Microsoft.Azure.WebJobs.dll (in our case current version was 1.0.1.0 and we need 1.1.1.0)
  2. Microsoft.WindowsAzure.Storage.dll (current version is 4.2.1.0, we need (≥ 4.3.0 && ≤ 5.0.2).
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!