From 252ed317189219ea7ba5e6ef247d7844c297c74a Mon Sep 17 00:00:00 2001 From: Dario Mapelli Date: Thu, 21 Nov 2024 21:15:10 -0500 Subject: [PATCH] wmagent - add highprio team name to init.sh script (#1565) --- docker/pypi/wmagent/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/pypi/wmagent/init.sh b/docker/pypi/wmagent/init.sh index 84449cf69..f5845632d 100755 --- a/docker/pypi/wmagent/init.sh +++ b/docker/pypi/wmagent/init.sh @@ -39,7 +39,7 @@ AGENT_FLAVOR=mysql [[ -n $WMA_BUILD_ID ]] || WMA_BUILD_ID=$(cat $WMA_ROOT_DIR/.wmaBuildId) || { echo "ERROR: Could not find/set WMA_BUILD_ID"; exit 1 ;} # Check runtime arguments: -TEAMNAME_REG="(^production$|^testbed-.*$|^dev-.*$|^relval.*$|^Tier0.*$)" +TEAMNAME_REG="(^production$|^highprio$|^testbed-.*$|^dev-.*$|^relval.*$|^Tier0.*$)" [[ $TEAMNAME =~ $TEAMNAME_REG ]] || { echo "TEAMNAME: $TEAMNAME does not match required expression: $TEAMNAME_REG"; echo "EXIT with Error 1" ; exit 1 ;} FLAVOR_REG="(^oracle$|^mysql$)"