From 8e02d8a64f0e03f4578c646e83b75480b68c76fb Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Wed, 18 Jun 2025 14:57:20 -0400 Subject: [PATCH] Fix errors in ODL startup Fixed errors in version of CCSDK base docker and startODL.sh script that caused problems starting up SDNC controller container. Issue-ID: SDNC-1855 Signed-off-by: Dan Timoney Change-Id: I02e4010d163ab18428a5f79343cb9a2e96bd4e3c --- installation/sdnc/src/main/scripts/startODL.sh | 2 +- pom.xml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/installation/sdnc/src/main/scripts/startODL.sh b/installation/sdnc/src/main/scripts/startODL.sh index 7de8e508..2d9f7499 100755 --- a/installation/sdnc/src/main/scripts/startODL.sh +++ b/installation/sdnc/src/main/scripts/startODL.sh @@ -366,7 +366,7 @@ if $SDNC_DB_INIT; then # Wait for database # printf "Waiting for mysql" - until mysql -h dbhost -u root -p"${MYSQL_ROOT_PASSWORD}" -e "select 1" > /dev/null 2>&1 + until mysql --skip-ssl -h dbhost -u root -p"${MYSQL_ROOT_PASSWORD}" -e "select 1" > /dev/null 2>&1 do printf "." sleep 1 diff --git a/pom.xml b/pom.xml index fab09bc8..052fc75a 100755 --- a/pom.xml +++ b/pom.xml @@ -33,10 +33,10 @@ ${ccsdk.sli.version} 1.0.0 - 2.0.1 - 2.0.1 - 2.0.1 - 2.0.1 + 2.1.0 + 2.1.0 + 2.1.0 + 2.1.0 -- 2.16.6