mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.11' into trunk
This commit is contained in:
commit
3048608c60
|
|
@ -89,6 +89,7 @@ Merged from 3.0:
|
|||
* Provide user workaround when system_schema.columns does not contain entries
|
||||
for a table that's in system_schema.tables (CASSANDRA-13180)
|
||||
Merged from 2.2:
|
||||
* Honor truststore-password parameter in cassandra-stress (CASSANDRA-12773)
|
||||
* Discard in-flight shadow round responses (CASSANDRA-12653)
|
||||
* Don't anti-compact repaired data to avoid inconsistencies (CASSANDRA-13153)
|
||||
* Wrong logger name in AnticompactionTask (CASSANDRA-13343)
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ public class SettingsTransport implements Serializable
|
|||
{
|
||||
// mandatory for SSLFactory.createSSLContext(), see CASSANDRA-9325
|
||||
encOptions.keystore = encOptions.truststore;
|
||||
encOptions.keystore_password = encOptions.truststore_password;
|
||||
}
|
||||
encOptions.algorithm = options.alg.value();
|
||||
encOptions.protocol = options.protocol.value();
|
||||
|
|
|
|||
Loading…
Reference in New Issue