@@ -1168,21 +1168,18 @@ def handle_auto_assignment(job: PostProcessJob) -> None:
1168
1168
from sentry .models .projectownership import ProjectOwnership
1169
1169
1170
1170
event = job ["event" ]
1171
- try :
1172
- ProjectOwnership .handle_auto_assignment (
1173
- project_id = event .project_id ,
1174
- organization_id = event .project .organization_id ,
1175
- event = event ,
1176
- logging_extra = {
1177
- "event_id" : event .event_id ,
1178
- "group_id" : str (event .group_id ),
1179
- "project_id" : str (event .project_id ),
1180
- "organization_id" : event .project .organization_id ,
1181
- "source" : "post_process" ,
1182
- },
1183
- )
1184
- except Exception :
1185
- logger .exception ("Failed to set auto-assignment" )
1171
+ ProjectOwnership .handle_auto_assignment (
1172
+ project_id = event .project_id ,
1173
+ organization_id = event .project .organization_id ,
1174
+ event = event ,
1175
+ logging_extra = {
1176
+ "event_id" : event .event_id ,
1177
+ "group_id" : str (event .group_id ),
1178
+ "project_id" : str (event .project_id ),
1179
+ "organization_id" : event .project .organization_id ,
1180
+ "source" : "post_process" ,
1181
+ },
1182
+ )
1186
1183
1187
1184
1188
1185
def process_service_hooks (job : PostProcessJob ) -> None :
0 commit comments