Changeset 103cafa in mod_gnutls


Ignore:
Timestamp:
Apr 19, 2018, 3:09:31 PM (5 years ago)
Author:
Fiona Klute <fiona.klute@…>
Branches:
asyncio, debian/master, main, master, proxy-ticket
Children:
3c475e0
Parents:
a85de63
Message:

Remove extra "OCSP failed" log entry while writing failure to cache

Both synchronous and asynchronous OCSP requests write their own
failure log messages, and the "next try" time doesn't make sense with
asynchronous updates, because they run on time regardless of cache
entries.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/gnutls_ocsp.c

    ra85de63 r103cafa  
    744744    };
    745745    apr_time_t expiry = apr_time_now() + timeout;
    746 
    747     char date_str[APR_RFC822_DATE_LEN];
    748     apr_rfc822_date(date_str, expiry);
    749     ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,
    750                  "OCSP request for %s failed, next try after %s.",
    751                  s->server_hostname, date_str);
    752746
    753747    int r = sc->cache->store(s, sc->ocsp->fingerprint, dummy, expiry);
Note: See TracChangeset for help on using the changeset viewer.