Merge branch 'cassandra-3.0' into cassandra-3.11

This commit is contained in:
Stefan Podkowinski 2017-03-23 20:51:17 +01:00
commit a10b8079ef
2 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,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)

View File

@ -116,6 +116,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();