We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24a605 commit 862b95bCopy full SHA for 862b95b
netty/src/main/java/io/grpc/netty/NettyClientTransport.java
@@ -196,7 +196,7 @@ public ClientStream newStream(
196
}
197
if (callOptions.getAuthority() != null) {
198
Status verificationStatus = negotiator.verifyAuthority(callOptions.getAuthority());
199
- if (verificationStatus != Status.OK) {
+ if (!verificationStatus.equals(Status.OK)) {
200
return new FailingClientStream(verificationStatus, tracers);
201
202
0 commit comments