Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref: Mark NVIDIA source as accept_invalid_certs #66509

Merged
merged 5 commits into from
Mar 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
loewenheim marked this conversation as resolved.
Show resolved Hide resolved
},
"chromium": {
"type": "http",
Expand Down
Loading