mirror of https://github.com/apache/activemq.git
send correct order of preferred SASL mechanisms.
This commit is contained in:
parent
a7178a46b7
commit
3d6bb7c392
|
@ -36,7 +36,7 @@ public class AmqpAuthenticator {
|
|||
|
||||
private static final Logger LOG = LoggerFactory.getLogger(AmqpAuthenticator.class);
|
||||
|
||||
private static final String[] mechanisms = new String[] { "ANONYMOUS", "PLAIN" };
|
||||
private static final String[] mechanisms = new String[] { "PLAIN", "ANONYMOUS" };
|
||||
|
||||
private final BrokerService brokerService;
|
||||
private final AmqpTransport transport;
|
||||
|
|
Loading…
Reference in New Issue