You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by rr...@apache.org on 2019/06/13 21:15:27 UTC

[trafficserver] branch master updated: Fix up remaining references to ssl_server_name.yaml

This is an automated email from the ASF dual-hosted git repository.

rrm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new f26825b  Fix up remaining references to ssl_server_name.yaml
f26825b is described below

commit f26825bac8f44fe60a959a496a02748b251c16a6
Author: Randall Meyer <rr...@apache.org>
AuthorDate: Thu Jun 13 13:04:03 2019 -0700

    Fix up remaining references to ssl_server_name.yaml
---
 doc/developer-guide/api/functions/TSSslClientCertUpdate.en.rst | 2 +-
 tests/gold_tests/pluginTest/cert_update/cert_update.test.py    | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/developer-guide/api/functions/TSSslClientCertUpdate.en.rst b/doc/developer-guide/api/functions/TSSslClientCertUpdate.en.rst
index b39a71d..faf08a6 100644
--- a/doc/developer-guide/api/functions/TSSslClientCertUpdate.en.rst
+++ b/doc/developer-guide/api/functions/TSSslClientCertUpdate.en.rst
@@ -32,7 +32,7 @@ Synopsis
 
 Description
 ===========
-:func:`TSSslClientCertUpdate` updates existing client certificates configured in :file:`ssl_server_name.yaml` or `proxy.config.ssl.client.cert.filename`. :arg:`cert_path` should be exact match as provided in configurations.
+:func:`TSSslClientCertUpdate` updates existing client certificates configured in :file:`sni.yaml` or `proxy.config.ssl.client.cert.filename`. :arg:`cert_path` should be exact match as provided in configurations.
 :func:`TSSslClientCertUpdate` returns `TS_SUCCESS` only if :arg:`cert_path` exists in configuration and reloaded to update the context.
 
 Type
diff --git a/tests/gold_tests/pluginTest/cert_update/cert_update.test.py b/tests/gold_tests/pluginTest/cert_update/cert_update.test.py
index 24bd004..ccd93d3 100644
--- a/tests/gold_tests/pluginTest/cert_update/cert_update.test.py
+++ b/tests/gold_tests/pluginTest/cert_update/cert_update.test.py
@@ -30,7 +30,7 @@ Test.SkipUnless(
     Condition.HasProgram("openssl","Openssl need to be installed on system for this test to work")
     )
 
-# Set up origin server 
+# Set up origin server
 server = Test.MakeOriginServer("server")
 request_header = {
     "headers": "GET / HTTP/1.1\r\nHost: doesnotmatter\r\n\r\n", "timestamp": "1469733493.993", "body": ""}
@@ -71,7 +71,7 @@ ts.Disk.remap_config.AddLines([
     'map https://foo.com https://127.0.0.1:{0}'.format(s_server_port)
 ])
 
-ts.Disk.ssl_server_name_yaml.AddLines([
+ts.Disk.sni_yaml.AddLines([
     '- fqdn: "*foo.com"',
     '  client_cert: "client1.pem"',
 ])
@@ -144,4 +144,4 @@ tr.Command = 'curl --verbose --insecure --header "Host: foo.com" https://localho
 tr.Processes.Default.StartBefore(s_server)
 s_server.Streams.all = "gold/client-cert-after.gold"
 tr.Processes.Default.ReturnCode = 0
-ts.StillRunningAfter = server
\ No newline at end of file
+ts.StillRunningAfter = server