[ 
https://issues.apache.org/jira/browse/ARTEMIS-1049?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

clebert suconic closed ARTEMIS-1049.
------------------------------------

> JMSDeliveryTime silently break JMSXGroupID
> ------------------------------------------
>
>                 Key: ARTEMIS-1049
>                 URL: https://issues.apache.org/jira/browse/ARTEMIS-1049
>             Project: ActiveMQ Artemis
>          Issue Type: Bug
>            Reporter: Igor Vagulin
>
> Due to some issue in code my message get both delivery time and JMSXGroupID 
> property set. This breaks ordering guaranteed by JMSXGroupID, one consumer 
> working thought. 
> Please at least add some warning to log. Spent 2 days of my life trying to 
> hunt this down.
> message produced by code below will not be properly ordered
> {quote}
> conn = connFactory.createConnection();
> session = conn.createSession();
> MapMessage m1 = session.createMapMessage();
> MapMessage m2 = session.createMapMessage();
> producer = session.createProducer(null);
> long deliveryTime = ZonedDateTime.now().toEpochSecond() * 1000
> m1.setJMSDeliveryTime(deliveryTime);
> m1.setStringProperty("JMSXGroupID", "mylovelygroup");
> m2.setJMSDeliveryTime(deliveryTime);
> m3.setStringProperty("JMSXGroupID", "mylovelygroup");
> producer.send(d, m1);
> producer.send(d, m2);
> {quote}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to