Skip to content

Commit

Permalink
https://issues.apache.org/jira/browse/AMQ-6320
Browse files Browse the repository at this point in the history
Turn off support for non SASL connections by default, can be enabled on
the TransportConnector URI if needed.
  • Loading branch information
tabish121 committed Jun 10, 2016
1 parent c599844 commit dbed28e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit dbed28e

Please sign in to comment.