X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fservicestub%2Fservice-stub-build-start.sh;fp=test%2Fservicestub%2Fservice-stub-build-start.sh;h=de6416748bd3b501a9bb83c8bce15b86160961d2;hb=b94b48f2cad1b161a0ece13a4100ccf4b7d0c503;hp=885bd77215bf8c7e495253f7518471f3f7d9aee0;hpb=3c504be356d2ac9fc5195eb45692e1b756caa9f3;p=nonrtric.git diff --git a/test/servicestub/service-stub-build-start.sh b/test/servicestub/service-stub-build-start.sh index 885bd772..de641674 100644 --- a/test/servicestub/service-stub-build-start.sh +++ b/test/servicestub/service-stub-build-start.sh @@ -4,7 +4,7 @@ # ========================LICENSE_START================================= # O-RAN-SC # %% -# Copyright (C) 2023: OpenInfra Foundation Europe. +# Copyright (C) 2023-2024: OpenInfra Foundation Europe. # %% # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -30,11 +30,6 @@ docker run --rm -d -p 8080:8080 --name $NAME $IMAGE_NAME sleep 10 echo "Make an HTTP request to the Hello World endpoint and display the response" -response=$(curl -s http://localhost:8080/v1/helloworld/sme) - -echo "Response from the /v1/helloworld/sme endpoint: " +response=$(curl -s http://localhost:8080/helloworld/v1) +echo "Response from the /helloworld/v1 endpoint: " echo "$response" - -response2=$(curl -s http://localhost:8080/v1/helloworld) -echo "Response from the /v1/helloworld endpoint: " -echo "$response2"