Skip to content

Commit

Permalink
fix: run.sh retry times
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangmy21 authored May 7, 2024
1 parent 4200ad2 commit 2f7d73b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dependency/shell/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ read_array() {

function retry_command {
local command="$1"
local max_attempts=2
local max_attempts=10
local attempt_num=1
local sleep_seconds=10
local sleep_seconds=5

while [ $attempt_num -le $max_attempts ]; do
echo "Attempt $attempt_num / $max_attempts to run command: $command"
Expand All @@ -67,11 +67,11 @@ function retry_command {
sleep $sleep_seconds

if kill -0 $PID 2>/dev/null; then
echo "Connected to server successfully."
return 0
else
echo "Failed to connect to server. Retrying..."
((attempt_num++))
else
echo "Connected to server successfully."
return 0
fi
done

Expand All @@ -93,7 +93,7 @@ if [ "$TERMINAL" = "SERVER" ]; then
echo "FINISH URL: $FINISH_URL"

echo "waiting..."
sleep 30 # wait connection time
sleep 60 # wait connection time
echo "watching..."

if [ -f $playback_dir/start.lock ]; then
Expand Down

0 comments on commit 2f7d73b

Please sign in to comment.