Skip to content

Commit

Permalink
Revert "fix: Just wait longer"
Browse files Browse the repository at this point in the history
This reverts commit 83899cb.
  • Loading branch information
tomasfarias committed Apr 11, 2024
1 parent 83899cb commit e056321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/check_temporal_up
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ set -e

# Wait for Temporal to be ready
SECONDS=0
TIMEOUT=360
TIMEOUT=180

# Check Temporal by just checking that the port is open
while true; do
if nc -z localhost 7233; then
if nc -vz localhost 7233; then
echo "Temporal is up!"
exit 0
fi
Expand Down

0 comments on commit e056321

Please sign in to comment.