diff options
-rw-r--r-- | pom.xml | 4 | ||||
-rwxr-xr-x | src/test/resources/http-cache/start_http_cache.sh | 7 |
2 files changed, 6 insertions, 5 deletions
@@ -88,7 +88,7 @@ <skip.docker.build>true</skip.docker.build> <skip.docker.push>true</skip.docker.push> <skip.staging.artifacts>false</skip.staging.artifacts> - <http.proxy></http.proxy> + <python.http.proxy.param></python.http.proxy.param> </properties> <distributionManagement> @@ -830,7 +830,7 @@ </ports> <workingDir>/usr/src/http-cache-app</workingDir> <cmd> - <shell>./start_http_cache.sh ${http.proxy} --python_proxyaddress localhost:${docker.http-cache.port.host}</shell> + <shell>./start_http_cache.sh ${python.http.proxy.param} --python_proxyaddress=localhost:${docker.http-cache.port.host}</shell> </cmd> </run> </image> diff --git a/src/test/resources/http-cache/start_http_cache.sh b/src/test/resources/http-cache/start_http_cache.sh index 0f32c93a6..fb4975e54 100755 --- a/src/test/resources/http-cache/start_http_cache.sh +++ b/src/test/resources/http-cache/start_http_cache.sh @@ -22,17 +22,18 @@ # ECOMP is a trademark and service mark of AT&T Intellectual Property. ### +echo "Starting HTTP CACHE python script" for i in "$@" do case $i in - --python_proxyaddress=*) + --python_proxyaddress=*) python_proxyaddress="--proxyaddress ${i#*=}" echo "- Using python_proxyaddress and set it to: $python_proxyaddress" shift # past argument=value ;; - --http_proxyaddress=*) + --http_proxyaddress=*) export http_proxy="${i#*=}" - export https_proxy=$http_proxy + export https_proxy="${i#*=}" echo "- Defining http_proxy/https_proxy env variables to: $http_proxy" shift # past argument=value ;; |