You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2018/05/03 02:28:13 UTC

[trafficserver] branch master updated: downgrade 'previously indexed' cert warning to debug

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

zwoop 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 26da8b9  downgrade 'previously indexed' cert warning to debug
26da8b9 is described below

commit 26da8b9761d4696df7a4b3c3d7cb5b4e348ddab7
Author: Randall Meyer <ra...@yahoo.com>
AuthorDate: Tue Apr 24 13:06:32 2018 -0700

    downgrade 'previously indexed' cert warning to debug
    
    This fixes #3498
---
 iocore/net/SSLCertLookup.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/iocore/net/SSLCertLookup.cc b/iocore/net/SSLCertLookup.cc
index 0e2a84f..06c29a0 100644
--- a/iocore/net/SSLCertLookup.cc
+++ b/iocore/net/SSLCertLookup.cc
@@ -413,7 +413,7 @@ SSLContextStorage::insert(const char *name, int idx)
     if (subdomain) {
       auto index = this->wilddomains.get(subdomain);
       if (index != -1) {
-        Warning("previously indexed '%s' with SSL_CTX #%d, cannot index it with SSL_CTX #%d now", lower_case_name, index, idx);
+        Debug("ssl", "previously indexed '%s' with SSL_CTX #%d, cannot index it with SSL_CTX #%d now", lower_case_name, index, idx);
         idx = -1;
       } else {
         this->wilddomains.put(ats_strdup(subdomain), idx);
@@ -422,7 +422,7 @@ SSLContextStorage::insert(const char *name, int idx)
     }
   } else {
     if (ink_hash_table_lookup(this->hostnames, lower_case_name, &value) && reinterpret_cast<InkHashTableValue>(idx) != value) {
-      Warning("previously indexed '%s' with SSL_CTX %p, cannot index it with SSL_CTX #%d now", lower_case_name, value, idx);
+      Debug("ssl", "previously indexed '%s' with SSL_CTX %p, cannot index it with SSL_CTX #%d now", lower_case_name, value, idx);
       idx = -1;
     } else {
       ink_hash_table_insert(this->hostnames, lower_case_name, reinterpret_cast<void *>(static_cast<intptr_t>(idx)));

-- 
To stop receiving notification emails like this one, please contact
zwoop@apache.org.