Skip to content

Commit

Permalink
fix sleep <int> vs <string>
Browse files Browse the repository at this point in the history
  • Loading branch information
MnrGreg committed Mar 7, 2022
1 parent 918cb1a commit 402f68b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-restart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function wait_for_job_completion() {
break;
else
i=$(($i+10))
sleep 10s
sleep 10
echo "$node - $i seconds"
fi
done
Expand All @@ -121,7 +121,7 @@ function wait_for_status() {
break;
else
i=$(($i+10))
sleep 10s
sleep 10
echo "$node NotReady - waited $i seconds"
fi
done
Expand Down

0 comments on commit 402f68b

Please sign in to comment.