From: Kostiantyn Nosach Date: Tue, 1 Jun 2021 14:50:37 +0000 (+0300) Subject: Update script for akka-artery X-Git-Tag: release/phosphorus~10 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=integration%2Fdistribution.git;a=commitdiff_plain;h=316d5948699df54da47cc77983f788b3c2bee020 Update script for akka-artery Update distribution scripts due to migration away from legacy akka remoting to artery JIRA: CONTROLLER-1968 Change-Id: I62b88bc6f4d6c406a9d2ecdb6e160178112b316f Signed-off-by: Kostiantyn Nosach Signed-off-by: Robert Varga --- diff --git a/karaf-scripts/src/main/assembly/bin/configure_cluster.sh b/karaf-scripts/src/main/assembly/bin/configure_cluster.sh index c3f1a430..d93ac44d 100755 --- a/karaf-scripts/src/main/assembly/bin/configure_cluster.sh +++ b/karaf-scripts/src/main/assembly/bin/configure_cluster.sh @@ -76,8 +76,8 @@ function create_strings # Then merge the array using the join utility defined above. count=1 for ip in ${CONTROLLERIPS[@]} ; do - ds[$count]=\\\"akka.tcp:\\/\\/opendaylight-cluster-data@${ip}:2550\\\" - rpc[$count]=\\\"akka.tcp:\\/\\/odl-cluster-rpc@${ip}:2551\\\" + ds[$count]=\\\"akka:\\/\\/opendaylight-cluster-data@${ip}:2550\\\" + rpc[$count]=\\\"akka:\\/\\/odl-cluster-rpc@${ip}:2551\\\" members[$count]=\\\"member-${count}\\\" count=$[count + 1] done