We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa9ec46 commit 97df9bdCopy full SHA for 97df9bd
1 file changed
bin/wait-for-hosts.sh
@@ -62,7 +62,7 @@ wait_for_host() {
62
fi
63
TIME_LIMIT=$(($(date +%s)+TIMEOUT))
64
while ! OUTPUT="$(connect_to_service "$HOST" "$PORT" 2>&1)"; do
65
- if [ "$(date +%s)" -gt "$TIME_LIMIT" ]; then
+ if [ "$(date +%s)" -ge "$TIME_LIMIT" ]; then
66
quiet_echo 'timeout'
67
if [ -n "$OUTPUT" ]; then
68
quiet_echo "$OUTPUT"
0 commit comments