diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py index 18693debafa65f..c109e42a7219a1 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -3310,6 +3310,13 @@ def build_cdc_postgres_init_db_volume(settings: Any) -> dict[str, dict[str, str] "filters": {"filetypes": ["pe", "pdb"]}, "url": "https://driver-symbols.nvidia.com/", "is_public": True, + # This tells Symbolicator to accept invalid SSL certs + # when connecting to this source. Currently Symbolicator can't deal + # with this source's certs because the `openssl` version we use + # lacks support for Authority Information Access (AIA), + # so we ignore the certs for now. + # TODO: Remove this once we can support AIA. + "accept_invalid_certs": True, }, "chromium": { "type": "http",