gpt4 book ai didi

Azure 服务总线 AMQP 对象接收器已中止

转载 作者:行者123 更新时间:2023-12-03 00:23:20 25 4
gpt4 key购买 nike

尝试将消息添加到 Azure 服务总线队列时,有时会收到此错误。谁能解释一下为什么会发生这种情况?

enter image description here

设置是,我们有一个调用事件函数的 Azure 持久函数。该事件函数将此消息添加到队列中。

这是我们如何进行排队的。

    public async Task SendWithDelayAsync<T>(T obj, TimeSpan delayProcessing, string sessionId = null) where T : BaseQueueMessage
{
string messageBody = JsonConvert.SerializeObject(obj);
var message = new Message(Encoding.UTF8.GetBytes(messageBody));
if (!string.IsNullOrEmpty(sessionId))
{
message.SessionId = sessionId;
}
// Send the message to the queue.
await _queueClient.ScheduleMessageAsync(message, DateTime.Now.Add(delayProcessing));
}

谢谢!

最佳答案

docs 中所述,这发生在,

An attempt is made to invoke an operation on an object that hasalready been closed, aborted, or disposed. In rare cases, the ambienttransaction is already disposed.

解决方案是检查代码并确保它不会调用已处置对象上的操作。

我过去也遇到过类似的问题,如果您不使用相同的版本,可以尝试将 Microsoft.Azure.WebJobs.Extensions.ServiceBus SDK 版本升级到“4.1.2”。

关于Azure 服务总线 AMQP 对象接收器已中止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63823075/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com