EventHubClient.Send: A message cannot be sent because it is either received from a link or is already sent over a link

There are two EventHubs in same EventHub namespace. I’m using EventHubClient.Send(EventData data) to send events, where both EventHubClient and EventData belong to Azure.Messaging.ServiceBus namespace. I wish to send the same EventData to both EventHubs belonging to same EventHub namespace. The second EventHub which receives data after the first EventHub, silently drops the data with the… Read More EventHubClient.Send: A message cannot be sent because it is either received from a link or is already sent over a link

Will Azure Service Bus continue retry after the Send call is complete with a fault/exception?

The following is the code for sending batched messages and the code block following is the setting for retry policy while creating the service bus client. While testing a scenario involving transient network fault, we see the log that the send task was faulted but the messages were seen in the service bus for the… Read More Will Azure Service Bus continue retry after the Send call is complete with a fault/exception?