]
Stuart Douglas updated WFLY-5904:
---------------------------------
Attachment: passivationTestFailureDump.txt
Attached stack dump when deadlock occurs
A deadlock can result if an EJB is being passivated at the same time
an invocation made
---------------------------------------------------------------------------------------
Key: WFLY-5904
URL:
https://issues.jboss.org/browse/WFLY-5904
Project: WildFly
Issue Type: Bug
Components: Clustering, EJB
Reporter: Stuart Douglas
Assignee: Paul Ferraro
Attachments: passivationTestFailureDump.txt
As seen in EJBClientDescriptorTestCase.testClientInvocationTimeout
This can be reproduced locally by adding a loop around the final invocations in the
test:
{code}
for (int i = 0; i < 1000; ++i) {
Assert.assertEquals("bar", remote1.getManagedBeanMessage());
Assert.assertEquals("bar", remote2.getManagedBeanMessage());
}
{code}