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
StatusErrors is not processing metadata trailer
https://github.com/grpc/grpc-java/blob/master/examples/src/main/java/io/grpc/examples/errorhandling/DetailErrorSample.java
static void verifyErrorReply(Throwable t) { Status status = Status.fromThrowable(t); Metadata trailers = Status.trailersFromThrowable(t); Verify.verify(status.getCode() == Status.Code.INTERNAL); Verify.verify(trailers.containsKey(DEBUG_INFO_TRAILER_KEY)); Verify.verify(status.getDescription().equals(DEBUG_DESC)); try { Verify.verify(trailers.get(DEBUG_INFO_TRAILER_KEY).equals(DEBUG_INFO)); } catch (IllegalArgumentException e) { throw new VerifyException(e); } }
The text was updated successfully, but these errors were encountered:
[pinpoint-apm#11265] Improve logging of StreamObserver.onError
30833bb
[#11265] Improve logging of StreamObserver.onError
0001341
Successfully merging a pull request may close this issue.
StatusErrors is not processing metadata trailer
https://github.com/grpc/grpc-java/blob/master/examples/src/main/java/io/grpc/examples/errorhandling/DetailErrorSample.java
The text was updated successfully, but these errors were encountered: