mirror of https://github.com/apache/activemq.git
update clean plugin settings to remove more test stores.
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1492874 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6ee4c66fc3
commit
8ab1934520
|
@ -442,6 +442,9 @@
|
|||
<filesets>
|
||||
<fileset>
|
||||
<directory>${basedir}/activemq-data</directory>
|
||||
<directory>${basedir}/KahaDB</directory>
|
||||
<directory>${basedir}/LeveDB</directory>
|
||||
<directory>${basedir}/shared</directory>
|
||||
</fileset>
|
||||
</filesets>
|
||||
</configuration>
|
||||
|
|
|
@ -35,10 +35,12 @@ public class QueueMasterSlaveSingleUrlTest extends QueueMasterSlaveTestSupport {
|
|||
super.setUp();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ActiveMQConnectionFactory createConnectionFactory() throws Exception {
|
||||
return new ActiveMQConnectionFactory(singleUriString);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void createMaster() throws Exception {
|
||||
master = new BrokerService();
|
||||
master.setBrokerName("shared-master");
|
||||
|
@ -53,8 +55,10 @@ public class QueueMasterSlaveSingleUrlTest extends QueueMasterSlaveTestSupport {
|
|||
broker.setPersistenceAdapter(adapter);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void createSlave() throws Exception {
|
||||
new Thread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
BrokerService broker = new BrokerService();
|
||||
|
|
Loading…
Reference in New Issue