Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
1.6.0
Description
The implementation of the internal DoCreateMessageProducer() does not use the passed in ProducerId parameter. Instead, it generates a new producer Id.
Session.cs
internal virtual MessageProducer DoCreateMessageProducer(ProducerId id, ActiveMQDestination destination) { return new MessageProducer(this, GetNextProducerId(), destination, this.RequestTimeout); }
Expected results:
The function should use the passed in producer Id.