From 940346f3270b0824bc1f847edc95d05da3c90a47 Mon Sep 17 00:00:00 2001 From: Katie Atrops Date: Thu, 14 Nov 2024 15:26:24 -0800 Subject: [PATCH] IWF-324: adding CustomTextField --- docker-compose/init-ci-temporal.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose/init-ci-temporal.sh b/docker-compose/init-ci-temporal.sh index c2574010..a887f95a 100755 --- a/docker-compose/init-ci-temporal.sh +++ b/docker-compose/init-ci-temporal.sh @@ -32,6 +32,8 @@ for run in {1..120}; do sleep 0.1 temporal operator search-attribute create --name CustomKeywordArrayField --type KeywordList sleep 0.1 + temporal operator search-attribute create --name CustomTextField --type Text + sleep 0.1 if checkExists "IwfWorkflowType" ] && checkExists "IwfGlobalWorkflowVersion" && checkExists "IwfExecutingStateIds" && checkExists "CustomKeywordField" && checkExists "CustomIntField" && checkExists "CustomBoolField" && checkExists "CustomDoubleField" && checkExists "CustomDatetimeField" && checkExists "CustomStringField" && checkExists "CustomKeywordArrayField" ] ; then echo "All search attributes are registered"