Skip to content

Commit 4701932

Browse files
authored
core: PartialForwardingServerCall should forward getAuthority (grpc#4009)
1 parent a85b0e1 commit 4701932

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/src/main/java/io/grpc/PartialForwardingServerCall.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,9 @@ public void setCompression(String compressor) {
6868
public Attributes getAttributes() {
6969
return delegate().getAttributes();
7070
}
71+
72+
@Override
73+
public String getAuthority() {
74+
return delegate().getAuthority();
75+
}
7176
}

0 commit comments

Comments
 (0)