]
Miroslav Novak updated WFLY-8751:
---------------------------------
Component/s: JMS
(was: JMX)
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); <--- here is the failure
final Message replyB = receiveMessage(replyQueueB, TimeoutUtil.adjust(5000));
Assert.assertNotNull("Reply message was null on reply queue: " +
replyQueueB, replyB);
}
{code}