From 5e0ac76fdb022bb60e17218dd971db99b8a7f3ee Mon Sep 17 00:00:00 2001 From: Amir Mujacic Date: Wed, 26 Nov 2025 12:29:23 +0100 Subject: [PATCH 1/2] fix(playstation): Temporarily force-enable fetching prospero dumps from tempest --- static/app/views/settings/project/tempest/configForm.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/app/views/settings/project/tempest/configForm.tsx b/static/app/views/settings/project/tempest/configForm.tsx index 99560aa3d7898d..9788fd46dc7fdd 100644 --- a/static/app/views/settings/project/tempest/configForm.tsx +++ b/static/app/views/settings/project/tempest/configForm.tsx @@ -36,7 +36,11 @@ export function ConfigForm({organization, project}: ConfigFormProps) { name: 'tempestFetchDumps', type: 'boolean', label: t('Attach Dumps'), - help: t('Attach dumps to issues.'), + help: t( + 'Option temporarily set to enabled: dumps are always fetched since they are needed for symbolication.' + ), + disabled: true, + setValue: () => true, }, ], }, From 1882660fcb23f78a8e4c3d02890d4858dce8b248 Mon Sep 17 00:00:00 2001 From: Amir Mujacic Date: Thu, 27 Nov 2025 13:41:57 +0100 Subject: [PATCH 2/2] Remove fetch prospero dumps --- static/app/types/project.tsx | 1 - .../app/views/settings/project/tempest/configForm.tsx | 11 ----------- 2 files changed, 12 deletions(-) diff --git a/static/app/types/project.tsx b/static/app/types/project.tsx index 971e2040b48dfe..0e9b4cb5da5154 100644 --- a/static/app/types/project.tsx +++ b/static/app/types/project.tsx @@ -93,7 +93,6 @@ export type Project = { stats?: TimeseriesValue[]; subjectPrefix?: string; symbolSources?: string; - tempestFetchDumps?: boolean; tempestFetchScreenshots?: boolean; transactionStats?: TimeseriesValue[]; } & AvatarProject; diff --git a/static/app/views/settings/project/tempest/configForm.tsx b/static/app/views/settings/project/tempest/configForm.tsx index 9788fd46dc7fdd..e4abcf638dfc4c 100644 --- a/static/app/views/settings/project/tempest/configForm.tsx +++ b/static/app/views/settings/project/tempest/configForm.tsx @@ -16,7 +16,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) { apiEndpoint={`/projects/${organization.slug}/${project.slug}/`} initialData={{ tempestFetchScreenshots: project.tempestFetchScreenshots, - tempestFetchDumps: project.tempestFetchDumps, }} saveOnBlur hideFooter @@ -32,16 +31,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) { label: t('Attach Screenshots'), help: t('Attach screenshots to issues.'), }, - { - name: 'tempestFetchDumps', - type: 'boolean', - label: t('Attach Dumps'), - help: t( - 'Option temporarily set to enabled: dumps are always fetched since they are needed for symbolication.' - ), - disabled: true, - setValue: () => true, - }, ], }, ]}