@@ -644,10 +644,6 @@ def serialize(
644
644
return {** base , ** extra , "teams" : attrs ["teams" ]}
645
645
646
646
647
- class EventProcessingDict (TypedDict ):
648
- symbolicationDegraded : bool
649
-
650
-
651
647
class LatestReleaseDict (TypedDict ):
652
648
version : str
653
649
@@ -662,7 +658,6 @@ class OrganizationProjectResponse(
662
658
):
663
659
team : TeamResponseDict | None
664
660
teams : list [TeamResponseDict ]
665
- eventProcessing : EventProcessingDict
666
661
platforms : list [str ]
667
662
hasUserReports : bool
668
663
environments : list [str ]
@@ -751,11 +746,6 @@ def get_attrs(
751
746
attrs [item ]["has_user_reports" ] = item .id in projects_with_user_reports
752
747
if not self ._collapse (LATEST_DEPLOYS_KEY ):
753
748
attrs [item ]["deploys" ] = deploys_by_project .get (item .id )
754
- # TODO: remove this attribute and evenrything connected with it
755
- # check if the project is in LPQ for any platform
756
- # XXX(joshferge): determine if the frontend needs this flag at all
757
- # removing redis call as was causing problematic latency issues
758
- attrs [item ]["symbolication_degraded" ] = False
759
749
760
750
return attrs
761
751
@@ -778,9 +768,6 @@ def serialize( # type: ignore[override] # intentionally different data shape
778
768
hasAccess = attrs ["has_access" ],
779
769
dateCreated = obj .date_added ,
780
770
environments = attrs ["environments" ],
781
- eventProcessing = {
782
- "symbolicationDegraded" : attrs ["symbolication_degraded" ],
783
- },
784
771
features = attrs ["features" ],
785
772
firstEvent = obj .first_event ,
786
773
firstTransactionEvent = bool (obj .flags .has_transactions ),
@@ -951,7 +938,6 @@ class DetailedProjectResponse(ProjectWithTeamResponseDict):
951
938
relayPiiConfig : str | None
952
939
builtinSymbolSources : list [str ]
953
940
dynamicSamplingBiases : list [dict [str , str | bool ]]
954
- eventProcessing : dict [str , bool ]
955
941
symbolSources : str
956
942
isDynamicallySampled : bool
957
943
tempestFetchScreenshots : NotRequired [bool ]
@@ -1098,9 +1084,6 @@ def serialize(
1098
1084
"dynamicSamplingBiases" : self .get_value_with_default (
1099
1085
attrs , "sentry:dynamic_sampling_biases"
1100
1086
),
1101
- "eventProcessing" : {
1102
- "symbolicationDegraded" : False ,
1103
- },
1104
1087
"symbolSources" : serialized_sources ,
1105
1088
"isDynamicallySampled" : sample_rate is not None and sample_rate < 1.0 ,
1106
1089
"autofixAutomationTuning" : self .get_value_with_default (
0 commit comments