Skip to content

Commit

Permalink
wait until UM is up and running
Browse files Browse the repository at this point in the history
  • Loading branch information
thr authored and thr committed Mar 22, 2024
1 parent 8788a32 commit 009fb67
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion universalmessaging/examples/post-init/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@ jobs:
- -c
- >-
echo Deploying Assets in UM [$DEPLOYMENT] ...;
runUMTool.sh CreateConnectionFactory -rname=nsp://$DEPLOYMENT:9000 -factoryname=local_um -factorytype=default -connectionurl=nsp://$DEPLOYMENT:9000 -durabletype=S
until [ "$response" = "0" ] || [ "$response" = "48" ] ; do
runUMTool.sh CreateConnectionFactory -rname=nsp://$DEPLOYMENT:9000 -factoryname=local_um -factorytype=default -connectionurl=nsp://$DEPLOYMENT:9000 -durabletype=S;
response=$?;
sleep 10;
done

0 comments on commit 009fb67

Please sign in to comment.