We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The README and the usage both say that a timeout of 0 will retry forever. I don't see this in the code nor in my own experience.
The text was updated successfully, but these errors were encountered:
I'm having the same issue, tested it with ./wait-for -t 0 localhost:80
./wait-for -t 0 localhost:80
Instrant result: Operation timed out
Operation timed out
Sorry, something went wrong.
Agreed.
for i in `seq $TIMEOUT` ; do
seq 0 actually generates 1 0 which means that the loop is ran twice.
seq 0
1 0
any update on this?
No branches or pull requests
The README and the usage both say that a timeout of 0 will retry forever. I don't see this in the code nor in my own experience.
The text was updated successfully, but these errors were encountered: