[ 
https://issues.apache.org/jira/browse/ARTEMIS-2681?focusedWorklogId=410599&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-410599
 ]

ASF GitHub Bot logged work on ARTEMIS-2681:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 26/Mar/20 20:45
            Start Date: 26/Mar/20 20:45
    Worklog Time Spent: 10m 
      Work Description: jbertram commented on pull request #3049: ARTEMIS-2681 
timestamp not set on notif msgs
URL: https://github.com/apache/activemq-artemis/pull/3049#discussion_r398880178
 
 

 ##########
 File path: 
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/management/NotificationTest.java
 ##########
 @@ -79,13 +79,17 @@ public void testBINDING_ADDED() throws Exception {
 
       NotificationTest.flush(notifConsumer);
 
+      long start = System.currentTimeMillis();
       session.createQueue(address, queue, durable);
 
       //the first message received will be for the address creation
       ClientMessage[] notifications = NotificationTest.consumeMessages(2, 
notifConsumer);
       Assert.assertEquals(BINDING_ADDED.toString(), 
notifications[1].getObjectProperty(ManagementHelper.HDR_NOTIFICATION_TYPE).toString());
       Assert.assertEquals(queue.toString(), 
notifications[1].getObjectProperty(ManagementHelper.HDR_ROUTING_NAME).toString());
       Assert.assertEquals(address.toString(), 
notifications[1].getObjectProperty(ManagementHelper.HDR_ADDRESS).toString());
+      Assert.assertTrue(notifications[1].getTimestamp() > start);
+      Assert.assertTrue((long) 
notifications[1].getObjectProperty(ManagementHelper.HDR_NOTIFICATION_TIMESTAMP) 
>= start);
 
 Review comment:
   It just means that the notification was sent *after* the binding was added. 
It's a simple validation of the timestamp.
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 410599)
    Time Spent: 1h 20m  (was: 1h 10m)

> Timestamp not set on notification messages
> ------------------------------------------
>
>                 Key: ARTEMIS-2681
>                 URL: https://issues.apache.org/jira/browse/ARTEMIS-2681
>             Project: ActiveMQ Artemis
>          Issue Type: Bug
>            Reporter: Justin Bertram
>            Assignee: Justin Bertram
>            Priority: Minor
>          Time Spent: 1h 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to