MT#9709 fix b196b6b04f Using wrong var.

This was producing empty values at ngcp-ossbss template mysql_values.cfg file
on a cluster_set of central type

Change-Id: I68160a9c5bef078d3154c6e8da6db1e9bcbb07aa
changes/11/411/1
Victor Seva 11 years ago
parent 10ea8aba69
commit 2437330d4e

@ -15,7 +15,7 @@
out = []; out = [];
IF cluster_sets.type == 'central'; IF cluster_sets.type == 'central';
set_hosts = [ hosts.$host, hosts.$host.peer ]; set_hosts = [ hosts.${argv.host}, hosts.${argv.host}.peer ];
ELSE; ELSE;
set_hosts = hosts.keys; set_hosts = hosts.keys;
END; END;

@ -15,7 +15,7 @@
out = []; out = [];
IF cluster_sets.type == 'central'; IF cluster_sets.type == 'central';
set_hosts = [ hosts.$host, hosts.$host.peer ]; set_hosts = [ hosts.${argv.host}, hosts.${argv.host}.peer ];
ELSE; ELSE;
set_hosts = hosts.keys; set_hosts = hosts.keys;
END; END;

Loading…
Cancel
Save