]
Miroslav Novak commented on WFLY-8751:
--------------------------------------
There seems to be timing issue in the test. Message are send before MDB managed to create
subscription on topic so message just get dropped.
Intermittent fail - MDB20TopicTestCase testEjb20TopicMDBs
----------------------------------------------------------
Key: WFLY-8751
URL:
https://issues.jboss.org/browse/WFLY-8751
Project: WildFly
Issue Type: Bug
Components: JMS
Affects Versions: 11.0.0.Alpha1
Reporter: Miroslav Novak
Assignee: Miroslav Novak
There are intermittent failures of MDB20TopicTestCase#testEjb20TopicMDBs. It's very
very rare and I cannot not reproduce it locally. Only in Jenkins CI environment.
Test randomly fails on:
{code}
public void testEjb20TopicMDBs() {
sendTextMessage("Say hello to the topic", topic);
final Message replyA = receiveMessage(replyQueueA, TimeoutUtil.adjust(5000));
Assert.assertNotNull("Reply message was null on reply queue: " +
replyQueueA, replyA);
final Message replyB = receiveMessage(replyQueueB, TimeoutUtil.adjust(5000));
Assert.assertNotNull("Reply message was null on reply queue: " +
replyQueueB, replyB); <--- here is the failure
}
{code}