send correct order of preferred SASL mechanisms.
This commit is contained in:
Timothy Bish 2015-04-01 10:17:45 -04:00
parent a7178a46b7
commit 3d6bb7c392
1 changed files with 1 additions and 1 deletions

View File

@ -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;