From 00a6a4d66b0d22d530314816b4b5697fbc975e37 Mon Sep 17 00:00:00 2001 From: Mahendra Raghuwanshi Date: Thu, 21 Mar 2019 04:19:23 +0000 Subject: Upgrade SDC to use common cassandra cluster Issue-ID: SDC-2199 Change-Id: I139f38f3f3d968b775c9962bfe3ad6d13ea7f678 Signed-off-by: Mahendra Raghuwanshi --- .../sdc-ui-tests/recipes/sanityUiTests_2_setup_configuration.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ui-ci/sdc-ui-tests/chef-repo') diff --git a/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/recipes/sanityUiTests_2_setup_configuration.rb b/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/recipes/sanityUiTests_2_setup_configuration.rb index 8bef97c7b5..1d4c6d6f6c 100644 --- a/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/recipes/sanityUiTests_2_setup_configuration.rb +++ b/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/recipes/sanityUiTests_2_setup_configuration.rb @@ -26,7 +26,6 @@ template "sdc-yaml-config" do }) end -replication_factor=1 template "titan.properties" do path "/#{tests_base}/conf/titan.properties" source "BE-titan.properties.erb" @@ -37,7 +36,7 @@ template "titan.properties" do :CASSANDRA_IP => node['Nodes']['CS'].join(",").gsub(/[|]/,''), :CASSANDRA_PWD => node['cassandra'][:cassandra_password], :CASSANDRA_USR => node['cassandra'][:cassandra_user], - :rep_factor => replication_factor, - :DC_NAME => node['cassandra']['datacenter_name']+node.chef_environment + :rep_factor => node['cassandra']['replication_factor'], + :DC_NAME => node['cassandra']['datacenter_name'] }) end -- cgit 1.2.3-korg