Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2103#discussion_r190438892
--- Diff:
tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/server/SecureConfigurationTest.java
---
@@ -177,8 +161,31 @@ private void
internal_testSecureDurableSubscriber(ConnectionFactory connectionFa
} catch (JMSSecurityException j) {
//Expected exception
}
+
+ Connection connection = null;
+
+ try {
+ connection = connectionFactory.createConnection();
+ Session session = connection.createSession(false,
Session.AUTO_ACKNOWLEDGE);
+
+ try {
+ session.createTemporaryQueue();
--- End diff --
This is within testSecureDurableSubscriber test, it should be its own test
case, testTemporaryQueue
---