The lock supplied is invalid. Either the lock expired, or the message has already been removed from the queue

I spent hours trying understand why I was getting a MessageLockLostException. The reason for me was due to AutoComplete defaulting to true. If you’re going to call messsage.Complete() (or CompleteAsync()) then you should instantiate an OnMessageOptions object, set AutoComplete to false, and pass it into your OnMessage call. var options = new OnMessageOptions(); options.AutoComplete = … Read more