Fix for sdc-api-tests docker 32/101132/2
authoraribeiro <anderson.ribeiro@est.tech>
Tue, 4 Feb 2020 17:00:34 +0000 (17:00 +0000)
committerYuli Shlosberg <ys9693@att.com>
Wed, 5 Feb 2020 07:44:50 +0000 (07:44 +0000)
Issue-ID: SDC-2756
Change-Id: I87e319a71931881fdef5c5095c79df3a13f4515a
Signed-off-by: aribeiro <anderson.ribeiro@est.tech>
test-apis-ci/sdc-api-tests/chef-repo/cookbooks/sdc-api-tests/recipes/sanityApiTests_2_setup_configuration.rb

index 55ab07f..c47d1dc 100644 (file)
@@ -21,7 +21,7 @@ template "sdc-yaml-config" do
         :ConfigurationFile            => "#{tests_base}/conf/configuration.yaml",
         :errorConfigurationFile       => "#{tests_base}/conf/error-configuration.yaml",
         :CASSANDRA_IP                 => node['Nodes']['CS'][0],
-        :CASSANDRA_PORT               =>  node['cassandra'][[:cassandra_port],
+        :CASSANDRA_PORT               =>  node['cassandra'][:cassandra_port],
         :CASSANDRA_PWD                => node['cassandra'][:cassandra_password],
         :CASSANDRA_USR                => node['cassandra'][:cassandra_user]
     })
@@ -35,7 +35,7 @@ template "janusgraph.properties" do
    mode "0755"
    variables({
       :CASSANDRA_IP => node['Nodes']['CS'].join(",").gsub(/[|]/,''),
-      :CASSANDRA_PORT =>  node['cassandra'][[:cassandra_port],
+      :CASSANDRA_PORT =>  node['cassandra'][:cassandra_port],
       :CASSANDRA_PWD => node['cassandra'][:cassandra_password],
       :CASSANDRA_USR => node['cassandra'][:cassandra_user],
       :rep_factor => node['cassandra']['replication_factor'],