Skip to content

Commit 1882660

Browse files
committed
Remove fetch prospero dumps
1 parent 5e0ac76 commit 1882660

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

static/app/types/project.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ export type Project = {
9393
stats?: TimeseriesValue[];
9494
subjectPrefix?: string;
9595
symbolSources?: string;
96-
tempestFetchDumps?: boolean;
9796
tempestFetchScreenshots?: boolean;
9897
transactionStats?: TimeseriesValue[];
9998
} & AvatarProject;

static/app/views/settings/project/tempest/configForm.tsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) {
1616
apiEndpoint={`/projects/${organization.slug}/${project.slug}/`}
1717
initialData={{
1818
tempestFetchScreenshots: project.tempestFetchScreenshots,
19-
tempestFetchDumps: project.tempestFetchDumps,
2019
}}
2120
saveOnBlur
2221
hideFooter
@@ -32,16 +31,6 @@ export function ConfigForm({organization, project}: ConfigFormProps) {
3231
label: t('Attach Screenshots'),
3332
help: t('Attach screenshots to issues.'),
3433
},
35-
{
36-
name: 'tempestFetchDumps',
37-
type: 'boolean',
38-
label: t('Attach Dumps'),
39-
help: t(
40-
'Option temporarily set to enabled: dumps are always fetched since they are needed for symbolication.'
41-
),
42-
disabled: true,
43-
setValue: () => true,
44-
},
4534
],
4635
},
4736
]}

0 commit comments

Comments
 (0)