Closed Abrissirba closed 3 years ago
Thank you for your feedback. Tagging and routing to the team member best able to assist.
Looks like the issue is that we are not adding overhead for distributed tracing instrumentation, which probably explains why you don't run into it locally. Thanks @jsquire for pointing it out!
Any estimate on when a new version of the nuget package is released?
Yes, we should have a beta version released next Tuesday.
Describe the bug I have an Azure function app that uses the Azure.Messaging.ServiceBus. Trying to send multiple messages in batch using CreateMessageBatchAsync. I'm adding messages with TryAddMesage and sends the batch if it returns false. This works localy but when I publish it to azure I get a MessageSizeExceeded when calling SendMessagesAsync.
It looks similar to this issue https://github.com/Azure/azure-sdk-for-net/issues/18038
Expected behavior SendMessagesAsync should be able to send the message,
Actual behavior (include Exception or Stack Trace) Getting this error in the azure function log: The message (id:37495150, size:296449 bytes) is larger than is currently allowed (262144 bytes). (MessageSizeExceeded)
To Reproduce
And here is the log output
Environment: Azure.Messaging.ServiceBus 7.1.0 .Net core 3.1 Azure Functions on Windows