Skip to content

Commit

Permalink
Seems like client and server are failing on EKS, revive sleep? Becaus…
Browse files Browse the repository at this point in the history
…e level-sites are working just fine...
  • Loading branch information
AndrewQuijano committed Apr 17, 2024
1 parent e5756f4 commit 3698238
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ if [[ $ROLE == "ALL" ]]; then
gradle -g gradle_user_home test;
elif [[ $ROLE == "SERVER" ]]; then
echo "Role: Server selected"
while :; do sleep 5 ; done
# gradle -g gradle_user_home run -PchooseRole=weka.finito.server_site
elif [[ $ROLE == "SERVER_JOB" ]]; then
echo "Role: Server selected. The Job version, this was used before, I might remove later."
Expand All @@ -19,6 +20,7 @@ elif [[ $ROLE == "LEVEL_SITE" ]]; then
gradle -g gradle_user_home run -PchooseRole=weka.finito.level_site_server
elif [[ $ROLE == "CLIENT" ]]; then
echo "Role: client"
while :; do sleep 5 ; done
# gradle -g gradle_user_home run -PchooseRole=weka.finito.client
else
echo "Sorry, this is not a valid MPC-PPDT role. Please try again."
Expand Down

0 comments on commit 3698238

Please sign in to comment.