fix(tests): set URL default value if no one set

This commit is contained in:
landrigun 2022-10-14 15:29:44 +00:00
parent df321ec555
commit 74e8d58b5c

View File

@ -6,7 +6,8 @@
#
#######################################
if [ -z ${SIMPLE_AUTH_URL} ]
URL=${SIMPLE_AUTH_URL}
if [ -z ${URL} ]
then
echo "[WARN]: SIMPLE_AUTH_URL is empty, set to http://localhost:9001"
URL="http://localhost:9001"