I am using Active MQ (5.3.2) for integration testing my application. I have
defined an active-mq broker in a spring config like so:
<amq:broker useJmx="false"
persistent="false"
deleteAllMessagesOnStartup="true"
useShutdownHook="true">
<amq:transportConnectors>
<amq:transportConnector uri="tcp://localhost:0"/>
</amq:transportConnectors>
</amq:broker>
But it seems to be ignoring `persistent=false` and every time I run the test
suite I get a folder created called `activemq-data`
What do I need to do so that Active MQ is not persistent?
--
View this message in context:
http://old.nabble.com/ActiveMQ-ignoring-persistent%3Dfalse-tp28956944p28956944.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.