-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Milestone
Description
grpc-java/stub/src/main/java/io/grpc/stub/BlockingClientCall.java
Lines 342 to 346 in d947c80
@Override | |
public void onClose(Status status, Metadata trailers) { | |
Preconditions.checkState(closedStatus == null, "ClientCall already closed"); | |
closedStatus = status; | |
} |
This means the StatusException
raised by the public BlockingClientCall
methods will be missing any trailers included by the server.