You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data type datetime.timedelta is not supported in uamqp when encoding message (or its properties) leading to the failure of sending messages containing timedelta.
The data type
datetime.timedelta
is not supported in uamqp when encoding message (or its properties) leading to the failure of sending messages containing timedelta.In .Net AMQP implementation, they support TimeSpan by a DescribedType.
https://github.com/Azure/azure-sdk-for-net/blob/94b8c933793f0801aa97d80218798894fa32d74f/sdk/servicebus/Azure.Messaging.ServiceBus/src/Amqp/AmqpMessageConverter.cs#L554-L555
The descriptor is
com.microsoft::timespan
, and the value is integer (seconds).We should investigate whether this could be supported in uamqp.
we should support
The text was updated successfully, but these errors were encountered: