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 nc command in the healthcheck has a syntax error, resulting in the following error message:
nc
nc: service "-w" unknown
The fix is to change nc 127.0.0.1 587 -w 2 to nc -w 2 127.0.0.1 587.
nc 127.0.0.1 587 -w 2
nc -w 2 127.0.0.1 587
The text was updated successfully, but these errors were encountered:
That's on me. I've merged PR #171 without proper testing. Will fix.
Sorry, something went wrong.
Fix for #172: Change order of parameters for netcat
df9771b
No branches or pull requests
The
nc
command in the healthcheck has a syntax error, resulting in the following error message:The fix is to change
nc 127.0.0.1 587 -w 2
tonc -w 2 127.0.0.1 587
.The text was updated successfully, but these errors were encountered: