Skip to content

Commit

Permalink
Closes-Bug: #1492038. removing a join for ip:port list
Browse files Browse the repository at this point in the history
Change-Id: I28514c7f8e278deebb1d84a2950462cb01bb3e94
  • Loading branch information
sanju-a committed Sep 15, 2015
1 parent be96dfb commit f485cbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile/tasks/ha.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def setup_cmon_param_zkonupgrade():
zoo_ip_list = [hstr_to_ip(get_control_host_string(\
cassandra_host)) for cassandra_host in env.roledefs['database']]
zk_servers_ports = ','.join(['%s:2181' %(s) for s in zoo_ip_list])
zks = 'ZK_SERVER_IP=("' + '" "'.join(zk_servers_ports) + '")'
zks = 'ZK_SERVER_IP="%s"' % (zk_servers_ports)
monitor_galera="False"
if get_contrail_internal_vip():
monitor_galera="True"
Expand Down

0 comments on commit f485cbc

Please sign in to comment.