Skip to content
This repository was archived by the owner on Aug 31, 2022. It is now read-only.

Commit 708128b

Browse files
committed
Fix password property name + Use default value just like the 'cassandra' job does + Remove unused property
1 parent 387a72d commit 708128b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

jobs/cassandra-acceptance-tests/templates/config.json.erb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,12 @@ link('cassandra_seeds_list').instances.each do |instance|
2525
{
2626
"timeout_scale": <%= p('timeout_scale') %>,
2727
"cluster_name": "<%= link('cassandra_seeds_list').p('cluster_name') %>",
28-
"cassandra_password": "<%= link('cassandra_seeds_list').p('cass_pwd') %>",
28+
"cassandra_password": "<%= link('cassandra_seeds_list').p('cassandra_password') %>",
2929
"cassandra_native_transport_port": "<%= link('cassandra_seeds_list').p('native_transport_port') %>",
3030
"cassandra_seeds": <%= seeds_array.to_json %>,
3131
"cassandra_servers": <%= servers_array.to_json %>,
3232
"client_encryption.enabled" : <%= link('cassandra_seeds_list').p('client_encryption.enabled') %>,
33-
"validate_ssl_TF": <%= link('cassandra_seeds_list').p('validate_ssl_TF') %>,
34-
"keyspace_replication_factor": <%= link('cassandra_seeds_list').p('system_auth_keyspace_replication_factor') %>,
33+
"keyspace_replication_factor": <%= link('cassandra_seeds_list').p('system_auth_keyspace_replication_factor', link('cassandra_seeds_list').instances.count) %>,
3534
"replication_strategy": "SimpleStrategy",
3635
"durable_write": true
3736
}

0 commit comments

Comments
 (0)