From fbace6417c0c88aa8b38ae9969a0c23010363c20 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Mon, 13 May 2019 12:08:50 -0700 Subject: [PATCH] Use a different invalid DNS name in the test --- packages/grpc-native-core/test/surface_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grpc-native-core/test/surface_test.js b/packages/grpc-native-core/test/surface_test.js index 2f3f7327..94b60e37 100644 --- a/packages/grpc-native-core/test/surface_test.js +++ b/packages/grpc-native-core/test/surface_test.js @@ -939,7 +939,7 @@ describe('Other conditions', function() { * and go to TRANSIENT_FAILURE to confirm that the waitForReady option * makes it end the call instead of continuing to try. A DNS resolution * failure makes that transition very fast. */ - const disconnectedClient = new Client('nothing.invalid:50051', grpc.credentials.createInsecure()); + const disconnectedClient = new Client('foo.test.google.com:50051', grpc.credentials.createInsecure()); const metadata = new grpc.Metadata({waitForReady: false}); const deadline = new Date(); deadline.setSeconds(deadline.getSeconds() + 1);