mirror of https://github.com/OpenVidu/openvidu.git
deployment: Fix unbound variable when WAIT_KIBANA_URL is empty for openvidu-server-pro image
parent
3dcde7db53
commit
280ba3b0c2
|
@ -35,7 +35,7 @@ if [ "${OPENVIDU_PRO_ELASTICSEARCH}" == "false" ]; then
|
|||
fi
|
||||
|
||||
# Wait for Kibana service
|
||||
if [ -n "${WAIT_KIBANA_URL}" ]; then
|
||||
if [ -n "${WAIT_KIBANA_URL:-}" ]; then
|
||||
printf "\n"
|
||||
printf "\n ======================================="
|
||||
printf "\n Waiting for Kibana service."
|
||||
|
|
Loading…
Reference in New Issue