Turn off support for non SASL connections by default, can be enabled on
the TransportConnector URI if needed.
This commit is contained in:
Timothy Bish 2016-06-10 17:55:28 -04:00
parent c5998444cf
commit dbed28e625
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public class AmqpWireFormat implements WireFormat {
public static final int DEFAULT_CONNECTION_TIMEOUT = 30000;
public static final int DEFAULT_IDLE_TIMEOUT = 30000;
public static final int DEFAULT_PRODUCER_CREDIT = 1000;
public static final boolean DEFAULT_ALLOW_NON_SASL_CONNECTIONS = true;
public static final boolean DEFAULT_ALLOW_NON_SASL_CONNECTIONS = false;
private static final int SASL_PROTOCOL = 3;