Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
taylanisikdemir committed Jan 26, 2024
1 parent dc14ef3 commit 87f39bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/run_cass_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ docker-compose -f docker/docker-compose.yml up -d cassandra cadence;

status=""
while [[ "$status" != "running" ]]; do
echo "waiting for containers to be healthy. status: $health_status"
echo "waiting for containers to be healthy. status: $status"
sleep 5
# checking cadence container is running is sufficient because it depends on health status of cassandra in docker-compose.yml
status="$(docker inspect docker-cadence-1 -f '{{ .State.Status }}')"
done;

Expand Down

0 comments on commit 87f39bc

Please sign in to comment.