From 54aa2162cda2b6f11e95684276184e2eb96569a4 Mon Sep 17 00:00:00 2001 From: Periyasamy Palanisamy Date: Tue, 24 Oct 2017 14:37:02 +0200 Subject: [PATCH] fix concat issue with akka.conf jinja2 template Change-Id: I0d6de69497072330555b90dddccf3e37544fbdc8 Signed-off-by: Periyasamy Palanisamy --- templates/akka.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/akka.conf.j2 b/templates/akka.conf.j2 index fb08627..e7a8108 100644 --- a/templates/akka.conf.j2 +++ b/templates/akka.conf.j2 @@ -9,7 +9,7 @@ {% set _ = vars.update({'member_index': '"' + "member-" + loop.index|string + '"'}) %} {% endif %} {% set ip_address = hostvars[host]['container_address']|string %} - {% set _ = odl_cluster_list.append('"' + "akka.tcp://opendaylight-cluster-data@" + ip_address + ":" + {{ akka_remoting_port }} + '"') %} + {% set _ = odl_cluster_list.append('"' + "akka.tcp://opendaylight-cluster-data@" + ip_address + ":" + akka_remoting_port|string + '"') %} {%- endfor %} odl-cluster-data { -- 2.36.6