mirror of https://github.com/apache/cassandra
Honor truststore-password parameter in stress
patch by Jane Deng; reviewed by Robert Stupp for CASSANDRA-12773
This commit is contained in:
parent
bf0906b92c
commit
5978f9d5f7
|
|
@ -1,4 +1,5 @@
|
|||
2.2.10
|
||||
* 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)
|
||||
|
|
|
|||
|
|
@ -115,6 +115,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