diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-10-09 16:32:12 +0200 |
---|---|---|
committer | S�bastien Determe <sebastien.determe@intl.att.com> | 2020-10-09 18:56:11 +0000 |
commit | 88fd35f7b46041f723cff0eaaf4ea4ed46e9530f (patch) | |
tree | d2ad8ed68dd0ad8aa40d1dd465bf4fc9fe200890 /extra/bin-for-dev/start-db.sh | |
parent | fd5d1f43556cb7c412f454a742fa87721444425b (diff) |
Fix the DCAE query
The DCAE deployment URL can contain URI parameters that crashes the URL used by HTTP4 Camel.
Also the parameter connectionTimeToLive is removed as it is transmitted in each call.
The SDC client is also updated to 1.4.1
Issue-ID: CLAMP-954
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: Ieebdfe009f4339188c75c7a3365546779a087561
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'extra/bin-for-dev/start-db.sh')
-rwxr-xr-x | extra/bin-for-dev/start-db.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/bin-for-dev/start-db.sh b/extra/bin-for-dev/start-db.sh index 99286fcc..97f8de1f 100755 --- a/extra/bin-for-dev/start-db.sh +++ b/extra/bin-for-dev/start-db.sh @@ -26,7 +26,7 @@ docker-compose -f ../docker/clamp/docker-compose.yml up -d db if [ "$1" = "test" ]; then - while ! (docker logs clamp_db_1 2>&1 | grep "socket: '/var/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution" > /dev/null); + while ! (docker logs clamp_db_1 2>&1 | grep "socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution" > /dev/null); do echo "Waiting Mysql to be up with CLDSDB4 db loaded before loading the TEST DATA ..." sleep 3 |