diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-02-24 21:11:26 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-02-24 21:11:26 -0800 |
commit | 36ccead4039872e02b85f6c99e899fc9739bc743 (patch) | |
tree | 5863090ab020415d9fada86bc96c279bdac08df8 /test/cpp/util | |
parent | 783eddfd6b56a9d13c31fc41b38c15fd4d71ab59 (diff) | |
parent | 0170a6c662337a1d9c741fa466d3a26723f2d5cf (diff) |
Merge pull request #735 from jboeuf/fix_ssl_san
Verifying the peer name on the X509 Certs correctly.
Diffstat (limited to 'test/cpp/util')
-rw-r--r-- | test/cpp/util/create_test_channel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/util/create_test_channel.cc b/test/cpp/util/create_test_channel.cc index be6c567060..745496f463 100644 --- a/test/cpp/util/create_test_channel.cc +++ b/test/cpp/util/create_test_channel.cc @@ -93,7 +93,7 @@ std::shared_ptr<ChannelInterface> CreateTestChannel( // Shortcut for end2end and interop tests. std::shared_ptr<ChannelInterface> CreateTestChannel(const grpc::string& server, bool enable_ssl) { - return CreateTestChannel(server, "foo.test.google.com", enable_ssl, false); + return CreateTestChannel(server, "foo.test.google.fr", enable_ssl, false); } } // namespace grpc |