From: rohithrajneesh Date: Mon, 6 Nov 2023 18:02:22 +0000 (+0000) Subject: Minor fix for a1pms_api_function X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=931e03479a552777755d805972428f8691c5dc1c;p=nonrtric.git Minor fix for a1pms_api_function ISSUE-ID: NONRTRIC-939 Change-Id: Idca238f5a5a8d82a2b8054949fe36240115c4ba2 Signed-off-by: rohithrajneesh --- diff --git a/test/common/a1pms_api_functions.sh b/test/common/a1pms_api_functions.sh index 9da4db54..e0650347 100644 --- a/test/common/a1pms_api_functions.sh +++ b/test/common/a1pms_api_functions.sh @@ -543,22 +543,16 @@ prepare_a1pms_config() { echo $YELLOW"Warning: No rics found for the configuration"$EYELLOW fi else + rics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "label=a1sim" --filter "status=running" --format {{.Names}}) oranrics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "label=orana1sim" --filter "status=running" --format {{.Names}}) - if [ $? -ne 0 ] || [ -z "$oranrics" ]; then - echo -e $RED" FAIL - the names of the running RIC Simulator cannot be retrieved." $ERED + + rics="$rics $oranrics" + + if [ $? -ne 0 ] || [ -z "$rics" ]; then + echo -e $RED" FAIL - the names of the running RIC Simulator or ORAN RIC cannot be retrieved." $ERED ((RES_CONF_FAIL++)) - return 1 + exit 1 fi - - rics=$(docker ps --filter "name=$RIC_SIM_PREFIX" --filter "network=$DOCKER_SIM_NWNAME" --filter "label=a1sim" --filter "status=running" --format {{.Names}}) - if [[ "$oranrics" == "" ]]; then - if [ $? -ne 0 ] || [ -z "$rics" ]; then - echo -e $RED" FAIL - the names of the running RIC Simulator cannot be retrieved." $ERED - ((RES_CONF_FAIL++)) - return 1 - fi - fi - rics="$rics $oranrics" fi cntr=0 for ric in $rics; do