This commit is contained in:
Clebert Suconic 2016-06-07 16:24:34 -04:00
parent f0f431acea
commit fcaef51963
1 changed files with 7 additions and 2 deletions

View File

@ -410,8 +410,13 @@ public class FailoverTest extends FailoverTestBase {
session.rollback(xid);
}
catch (XAException e) {
//there is still an edge condition that we must deal with
session.rollback(xid);
try {
//there is still an edge condition that we must deal with
session.rollback(xid);
}
catch (Exception ignored) {
log.trace(ignored.getMessage(), ignored);
}
}
ClientConsumer consumer = session.createConsumer(FailoverTestBase.ADDRESS);