File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
spring-integration-jms/src/test/java/org/springframework/integration/jms Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 35
35
*/
36
36
public abstract class ActiveMQMultiContextTests {
37
37
38
- protected static final ConnectionFactory amqFactory = new ActiveMQConnectionFactory ("vm://localhost?broker.persistent=false" );
38
+ protected static final ActiveMQConnectionFactory amqFactory =
39
+ new ActiveMQConnectionFactory ("vm://localhost?broker.persistent=false" );
39
40
40
41
protected static final CachingConnectionFactory connectionFactory = new CachingConnectionFactory (
41
42
amqFactory );
42
43
43
44
@ BeforeClass
44
45
public static void startUp () throws Exception {
46
+ amqFactory .setTrustAllPackages (true );
45
47
connectionFactory .setCacheConsumers (false );
46
48
connectionFactory .createConnection ().close ();
47
49
}
You can’t perform that action at this time.
0 commit comments