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
Normally, we expect simple utilities to respond with the POSIX exit code 0 on success, and something else (e.g. 1) when an error occurred.
0
1
root@871ff6bb412b:/opt/bin# publisher -hostname localhost:4466 -topic test_topic -message "Hello testing kafka" -partition 0 Publishing : Hello testing kafka To: localhost:4466, topic: test_topic, partition: 0 ---------------------- 2019/06/04 21:35:20 Fatal Error: dial tcp 127.0.0.1:4466: connect: connection refused 2019/06/04 21:35:20 Sending took: 0.657800 ms root@871ff6bb412b:/opt/bin# echo $? 0
The utility responds with 0 in the error case.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Normally, we expect simple utilities to respond with the POSIX exit code
0
on success, and something else (e.g.1
) when an error occurred.The utility responds with
0
in the error case.The text was updated successfully, but these errors were encountered: