Problems with sentry and letsencrypt

Indeed. Its this bug:

And this is the solution:

from raven.transport.requests import RequestsHTTPTransport
RAVEN_CONFIG = {
    'dsn': '...',
    'transport': RequestsHTTPTransport,
}

More transports (which may or may not use SNI): https://raven.readthedocs.io/en/stable/transports.html

2 Likes