From 77b638c6927bec444efbf1d165da055e77a6b0f1 Mon Sep 17 00:00:00 2001 From: Eric Krebs Date: Thu, 27 Jun 2024 20:02:10 -0500 Subject: [PATCH] fix temporal command line arguments --- lite/start-lite-server.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lite/start-lite-server.sh b/lite/start-lite-server.sh index 48984d5c..140bb977 100644 --- a/lite/start-lite-server.sh +++ b/lite/start-lite-server.sh @@ -17,11 +17,11 @@ echo "now trying to register iWF system search attributes..." for run in {1..60}; do sleep 1 - temporal operator search-attribute create -name IwfWorkflowType -type Keyword + temporal operator search-attribute create --name IwfWorkflowType --type Keyword sleep 0.1 - temporal operator search-attribute create -name IwfGlobalWorkflowVersion -type Int + temporal operator search-attribute create --name IwfGlobalWorkflowVersion --type Int sleep 0.1 - temporal operator search-attribute create -name IwfExecutingStateIds -type KeywordList + temporal operator search-attribute create --name IwfExecutingStateIds --type KeywordList sleep 0.1 if checkExists "IwfWorkflowType" ] && checkExists "IwfGlobalWorkflowVersion" && checkExists "IwfExecutingStateIds" ] ; then echo "All search attributes are registered"