add auto fail to ensure it won't block a hudson build again and we get a thread dump

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1084900 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-03-24 11:22:49 +00:00
parent 4298a41af8
commit f23303ae66
1 changed files with 6 additions and 0 deletions

View File

@ -30,6 +30,12 @@ public class QueueMasterSlaveSingleUrlTest extends QueueMasterSlaveTest {
private final String brokerUrl = "tcp://localhost:62001";
private final String singleUriString = "failover://(" + brokerUrl +")?randomize=false";
@Override
protected void setUp() throws Exception {
setAutoFail(true);
super.setUp();
}
protected ActiveMQConnectionFactory createConnectionFactory() throws Exception {
return new ActiveMQConnectionFactory(singleUriString);
}