Skip to content

feat: Re-enable Intel symbol source #88892

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

Merged
merged 2 commits into from
Apr 8, 2025
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
28 changes: 13 additions & 15 deletions src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2812,21 +2812,19 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
"url": "http://ctxsym.citrix.com/symbols/",
"is_public": True,
},
# Right now Symbolicator is not able to successfully download from
# the Intel source because the source doesn't accept custom user agents.
# Until we are confident we can spoof Symbolicator's user agent without
# abusing the source, we are disabling it. See
# https://github.com/getsentry/team-ingest/issues/642.
#
# "intel": {
# "type": "http",
# "id": "sentry:intel",
# "name": "Intel",
# "layout": {"type": "symstore"},
# "filters": {"filetypes": ["pe", "pdb"]},
# "url": "https://software.intel.com/sites/downloads/symbols/",
# "is_public": True,
# },
"intel": {
"type": "http",
"id": "sentry:intel",
"name": "Intel",
"layout": {"type": "symstore"},
"filters": {"filetypes": ["pe", "pdb"]},
"url": "https://software.intel.com/sites/downloads/symbols/",
"headers": {
"User-Agent": "curl/7.72.0",
},
"is_public": True,
"has_index": True,
},
"amd": {
"type": "http",
"id": "sentry:amd",
Expand Down
Loading