Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Fixes string replacement for api service names with multiple slashes. #46

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion images/nginx-runtime/docker/s2i/bin/run
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ getApiUrl (){
# Results in API_URL=https://django-devex-von-dev.pathfinder.gov.bc.ca/api/v1/
# ================================================================================
if [ ! -z "${API_SERVICE_NAME}" ]; then
_SERVICE_NAME="$(tr '[:lower:]' '[:upper:]' <<< ${API_SERVICE_NAME/-/_})"
_SERVICE_NAME="$(tr '[:lower:]' '[:upper:]' <<< ${API_SERVICE_NAME//-/_})"
_SERVICE_HOST_NAME=${_SERVICE_NAME}_SERVICE_HOST
_SERVICE_PORT_NAME=${_SERVICE_NAME}_SERVICE_PORT

Expand Down