mirror of https://github.com/grpc/grpc-java.git
gae-interop-testing: disable serverInProcess tests (#3679)
Tests that require serverInProcess() will not work because the server is remote.
This commit is contained in:
parent
ef2ec94911
commit
2999d24bc7
|
|
@ -147,6 +147,12 @@ public final class OkHttpClientInteropServlet extends HttpServlet {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean serverInProcess() {
|
||||||
|
// Server-side metrics won't be found because the server is running remotely.
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// grpc-test.sandbox.googleapis.com does not support these tests
|
// grpc-test.sandbox.googleapis.com does not support these tests
|
||||||
@Override
|
@Override
|
||||||
public void customMetadata() { }
|
public void customMetadata() { }
|
||||||
|
|
|
||||||
|
|
@ -97,6 +97,12 @@ public final class NettyClientInteropServlet extends HttpServlet {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean serverInProcess() {
|
||||||
|
// Server-side metrics won't be found because the server is running remotely.
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// grpc-test.sandbox.googleapis.com does not support these tests
|
// grpc-test.sandbox.googleapis.com does not support these tests
|
||||||
@Override
|
@Override
|
||||||
public void customMetadata() { }
|
public void customMetadata() { }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue