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
There is some runtime exceptions that has no message when they are fired.
Actually the healthcheck performs a message with return builder.down().withData("reason", "client [" + client.getKey() + "]: " + e.getMessage()).build();
return builder.down().withData("reason", "client [" + client.getKey() + "]: " + e.getMessage()).build();
Reason should include a message that must explain what's happening on any exception.
If getMessage() returns null the message is something like
"reason": "client [<default>]: null"
In this reproducer the atMost method of Mutiny will throw a TimeoutException that has no message ( null ).
atMost
TimeoutException
uname -a
ver
No response
java -version
mvnw --version
gradlew --version
The text was updated successfully, but these errors were encountered:
/cc @cescoffier, @gsmet, @jmartisk, @machi1990, @xstefank
Sorry, something went wrong.
Fix quarkusio#26885 - improve Redis health check output
a15b8dd
93147b7
(cherry picked from commit a15b8dd)
Successfully merging a pull request may close this issue.
Describe the bug
There is some runtime exceptions that has no message when they are fired.
Actually the healthcheck performs a message with
return builder.down().withData("reason", "client [" + client.getKey() + "]: " + e.getMessage()).build();
Expected behavior
Reason should include a message that must explain what's happening on any exception.
Actual behavior
If getMessage() returns null the message is something like
"reason": "client [<default>]: null"
How to Reproduce?
In this reproducer the
atMost
method of Mutiny will throw aTimeoutException
that has no message ( null ).Output of
uname -a
orver
No response
Output of
java -version
No response
GraalVM version (if different from Java)
No response
Quarkus version or git rev
No response
Build tool (ie. output of
mvnw --version
orgradlew --version
)No response
Additional information
No response
The text was updated successfully, but these errors were encountered: