Github user jbertram commented on the issue:
https://github.com/apache/activemq-artemis/pull/2060
Unfortunately this change is breaking
`org.apache.activemq.artemis.tests.integration.openwire.BasicSecurityTest#testCreateTempDestinationAuthorization`
and will, in general, break lots of use-cases involving security. I believe
this is because the session is now always marked as "internal" which means
security will be disabled for it (see
`org.apache.activemq.artemis.core.protocol.openwire.OpenWireConnection#addSession(org.apache.activemq.command.SessionInfo,
boolean)`). This either must be fixed or the change must be reverted.
---